Remove ‘Additional Information’ Panel Title in WooCommerce

This function lets your remove, or change to custom text, the title inside the single product panel in WooCommerce. The title by default is ‘Additional Information’, but it already says ‘Additional Information’ up on the tab. Redundant.

/** 
 * remove on single product panel 'Additional Information' since it already says it on tab.
 */
add_filter('woocommerce_product_additional_information_heading', 'isa_product_additional_information_heading');

function isa_product_additional_information_heading() {
	echo '';
}

See more:

We've 11 Responses

  1. March 28th, 2014 at 6:59 pm

    on my woo commerce checkout page, I can’t seem to remove the “ADDITIONAL INFORMATION” title.

    The code that you have provided, which file do you paste this code into, and where within the file.

    Sorry for the basic question

    mark
    • March 30th, 2014 at 2:37 pm

      No problem. The code goes into your functions.php file at the bottom. If a closing PHP tag exists, then this code goes right before that. A closing PHP looks like:

      ?>
      

      But, this code removes “ADDITIONAL INFORMATION” from the product page, not the checkout page. I’ve never seen it on the checkout page. Hope this helps.

      Isabel
    • April 16th, 2014 at 11:19 pm

      They didn’t add a filter or hook for that. You would have to make a custom template file for that. Just create a folder named, “woocommerce” inside your theme. Then, inside that folder, create another folder named, “single-product“. Then, create a new file in the “single-product” folder. Name the file “related.php“. Copy this text into the file. Then make your change in that file:

      Find this:

      _e( 'Related Products', 'woocommerce' );
      

      and replace it with this:

      _e( 'Related Services', 'woocommerce' );
      

      Save and upload to your hosting account. You’ll see the change take effect after clearing any caches. Hope this helps.

      Isabel
  2. July 31st, 2014 at 11:44 pm

    Aweomse, I was looking for that one! Now its only the description tab and review tab left, as well as the one for the plugin ‘WooCommerce Custom Product Tabs Lite’, to get the panel title removed.

    Thanks a lot, your contributions are really helping me out a lot.

    Thomas
  3. July 31st, 2014 at 11:52 pm

    Same goes for description tab. Let’s see if I make this right now with the code you told me earlier to appear here now correctly.

    /** 
     * remove on single product panel 'Product Description' heading since it already says it on the tab.
     */
    add_filter('woocommerce_product_description_heading', 'isa_product_description_heading');
     
    function isa_product_description_heading() {
        echo '';
    }
    
    Thomas
  4. August 1st, 2014 at 12:19 am

    The one for the reviews tab I could not find out so far, but for the ‘WooCommerce Custom Product Tabs Lite’ plugin the code is:

    /** 
     * remove on single product panel the 'Title' heading for the 'WooCommerce Custom Product Tabs Lite' plugin since it already says it on the tab.
     */
    add_filter('woocommerce_custom_product_tabs_lite_heading', 'isa_custom_product_tabs_lite_heading');
     
    function isa_custom_product_tabs_lite_heading() {
        echo '';
    }
    
    Thomas

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]