Editing product data tabs

You need to add the code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the Code snippets plugin. Please don’t add custom code directly to your parent theme’s functions.php file as this will be wiped entirely when you update the theme.

Removing Tabs

Use the following snippet to remove specific tabs

https://gist.github.com/woogists/a773892c2e7e19e69c24e6051ef52198

Renaming Tabs

Use the following snippet to rename tabs.

https://gist.github.com/woogists/a0e1554b392f5718d6557797a480b9e6

Re-ordering Tabs

Use the following snippet to change the tab order

https://gist.github.com/woogists/abb8a37f8c708d712e46ce2d02ffdc43

Customize a tab

The following snippet will replace the description tab with a custom function

https://gist.github.com/woogists/b876d4ec508922765258f3d07e03f1f2

Add a custom tab

Use the following snippet to add a custom global product tab

https://gist.github.com/woogists/c15230393ba094d9da33a19a02e20a15

The Additional Information tab

Please note that the “Additional Information” tab will only show if the product has weight, dimensions or attributes (with “Visible on the product page” checked). If you try to apply a change to that tab and if the product does not have weight, dimensions or attribute, you will get an error message similar to :

Warning: call_user_func() expects parameter 1 to be a valid callback, no array or string given in /mysite/wp-content/plugins/woocommerce/templates/single-product/tabs/tabs.php on line 35

In that case, you have to use WooCommerce conditional tags:

  • has_attributes()
  • has_dimensions()
  • has_weight()

https://gist.github.com/woogists/4c33d31bbb4134ba1fd692b496d2e0a6