Product Short Description on Shop Main Page become hyperlink
-
Hi all,
Recently I add showing the short description under product title on main Shop page by using following code:add_action( 'woocommerce_after_shop_loop_item_title', 'wc_add_short_description' ); function wc_add_short_description() { global $product; ?> <div itemprop="description"> <?php echo substr( apply_filters( 'woocommerce_short_description', $product->post->post_excerpt ), 0,150 ); echo '...' ?> </div> <?php }
And it works fine, I can control description char length. But this short description become a hyperlink and it is the same color as title (red) not as usual text (black). I just need this short description to become text, not hyperlink.
You can see how it looks like in the following screenshot: https://i.postimg.cc/vT2xtgw3/screenshot-2940.png
If you have any question, feel free to ask, I will try to provide full answer.
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Product Short Description on Shop Main Page become hyperlink’ is closed to new replies.