Support Forum › Forums › Mixxcazt – Creative Multipurpose WooCommerce Theme › Display short description in shop
Tagged: short description
- This topic has 11 replies, 2 voices, and was last updated 2 years, 10 months ago by Billy Nguyen.
-
AuthorPosts
-
October 31, 2021 at 1:39 am #2756mat3Support Expired
Hello
Where do we need to put code to display short description in shop page right under the title of each product?
The code should be this in functions.php:
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘wc_add_short_description’ );
/**
* WooCommerce, Add Short Description to Products on Shop Page
*/
function wc_add_short_description() {
global $product;?>
<div itemprop=”description”>
<?php echo apply_filters( ‘woocommerce_short_description’, $product->get_short_description() ) ?>
</div>
<?php
}but it gets displayed under the Add to cart button.
November 1, 2021 at 8:51 am #2758Please edit this code:
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘wc_add_short_description’ );
to:
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘wc_add_short_description’, 1);
If you need to help, please send Admin web account for me, I will check and try to help you.
November 1, 2021 at 5:31 pm #2761mat3Support ExpiredThis reply has been marked as private.November 2, 2021 at 8:56 am #2763This reply has been marked as private.November 2, 2021 at 11:33 pm #2766mat3Support ExpiredThis reply has been marked as private.November 3, 2021 at 8:55 am #2768Ok, I have just fixed this issue, please add short description for product: https://prnt.sc/1y85w71
November 3, 2021 at 11:46 pm #2776mat3Support ExpiredThank you, it works. What and where have you corrected?
November 4, 2021 at 10:02 am #2781I fixed this code again:
add_action('woocommerce_shop_loop_item_title', 'wc_add_short_description', 10); function wc_add_short_description() { global $product; ?> <div itemprop="description"> <?php echo apply_filters( 'woocommerce_short_description', $product->get_short_description() ) ?> </div> <?php }
November 5, 2021 at 2:08 am #2786mat3Support ExpiredNovember 5, 2021 at 8:56 am #2790I have just resolved this issue, please recheck.
November 5, 2021 at 6:41 pm #2791mat3Support ExpiredThank you.
November 9, 2021 at 8:38 am #2796Ok, let me know if you need to help and hope you will vote 5 stars for our team.
Thanks!
-
AuthorPosts
You must be logged in to reply to this topic.