Title: Description Heading Cant Be Remove
Last modified: September 3, 2017

---

# Description Heading Cant Be Remove

 *  Resolved [jeanzz](https://wordpress.org/support/users/jeanzz/)
 * (@jeanzz)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/description-heading-cant-be-remove/)
 * Hi, i have renamed the products tabs accordingly to below, but only successfully
   remove heading for reviews / what are other people saying, but not the description
   heading. Have pasted the below codes in functions file. Kindly advise how should
   i remove the description heading please?
 * u may refer image here > [https://pasteboard.co/GIHvFoL.png](https://pasteboard.co/GIHvFoL.png)
 * `}
 * add_filter( ‘woocommerce_reviews_heading’, ‘remove_reviews_heading’ );
    function
   remove_reviews_heading() { return ”; }
 * add_filter( ‘woocommerce_description_heading’, ‘remove_description_heading’ );
   
   function remove_description_heading() { return ”; }
 * add_filter( ‘woocommerce_product_tabs’, ‘woo_rename_tabs’, 98 );
    function woo_rename_tabs(
   $tabs ) {
 *  $tabs[‘reviews’][‘title’] = __( ‘What People Are Saying’ ); // Rename the reviews
   tab
    $tabs[‘description’][‘title’] = __( ‘Details’ ); // Rename the description
   tab
 *  return $tabs;
 * }

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Peter Lawrenson](https://wordpress.org/support/users/lorro/)
 * (@lorro)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/description-heading-cant-be-remove/#post-9464997)
 * Try this snippet:
 *     ```
       add_filter( 'woocommerce_product_description_heading', 'remove_description_heading' );
       function remove_description_heading() {
         return '';
       }
       ```
   
 *  Thread Starter [jeanzz](https://wordpress.org/support/users/jeanzz/)
 * (@jeanzz)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/description-heading-cant-be-remove/#post-9466208)
 * it works perfectly! thanks much! 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Description Heading Cant Be Remove’ 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/)

 * 2 replies
 * 2 participants
 * Last reply from: [jeanzz](https://wordpress.org/support/users/jeanzz/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/description-heading-cant-be-remove/#post-9466208)
 * Status: resolved