Title: description!
Last modified: August 21, 2016

---

# description!

 *  [kopieckreta](https://wordpress.org/support/users/kopieckreta/)
 * (@kopieckreta)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/description-11/)
 * I would like to display product’s category description on products page, not 
   the single product page but on page where the selected category products are 
   listed. This is the code i am using,
 *     ```
       function new_excerpt_more( $more ) {
       	return '... <a class="read-more" href="'. get_permalink( get_the_ID() ) . '">read more about '. get_the_title() .'</a>';
       }
   
       add_filter( 'excerpt_more', 'new_excerpt_more' );
       add_action( 'woocommerce_after_subcategory_title', 'custom_add_product_description', 12);
       function custom_add_product_description ($category) {
       $cat_id        =    $category->term_id;
       $prod_term    =    get_term($cat_id,'product_cat');
       $description =    $prod_term->description;
   
       echo '<div>' .$description. '</div>';
   
       }
       ```
   
 * This does display the description i need but on the page where the categories
   are listed, I need this to be on the products page where the selected category
   products are displayed.
 * I will really appreciate any help here
 * [https://wordpress.org/plugins/woocommerce/](https://wordpress.org/plugins/woocommerce/)

The topic ‘description!’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [kopieckreta](https://wordpress.org/support/users/kopieckreta/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/description-11/)
 * Status: not resolved