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 ''; }
Taha M Asadullah
January 24th, 2014 at 10:09 am
Thank you.
mark
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
Isabel
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.
Michael T.
April 16th, 2014 at 8:56 pm
I need to change the “Related Products” title on the main product page to say “Related Services.” Got a snippet that can do that?
Thanks!
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:
and replace it with this:
Save and upload to your hosting account. You’ll see the change take effect after clearing any caches. Hope this helps.
Michael T.
April 18th, 2014 at 4:32 pm
Thank you so much, Isabel. I found a way to do this without creating a child template. It uses the translation/localization feature. I essentially “translate” the word “Product” to the word “Service.”
This page shows how: http://woothemes.zendesk.com/entries/22520857-quickly-translate-or-replace-wordpress-localized-site-text
Thanks again for your insight into how to create a child theme.
Isabel
April 18th, 2014 at 4:39 pm
Nice method. Thank you.
Thomas
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
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.
Thomas
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:
andre
April 13th, 2018 at 5:04 am
.woocommerce-Reviews-title{display:none}