Advertisement
retoo

Produkt Tabs umbenennen

Mar 15th, 2021
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. add_filter( 'woocommerce_product_tabs', 'woo_rename_tab', 98);
  2. function woo_rename_tab($tabs) {
  3.  $tabs['description']['title'] = 'More info';
  4.  return $tabs;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement