Rename Product Tab

PHOTO EMBED

Fri Feb 18 2022 10:27:42 GMT+0000 (Coordinated Universal Time)

Saved by @hsmith1947 #php

add_filter( 'woocommerce_product_tabs', 'woo_rename_tab', 98);
function woo_rename_tab($tabs) {

 $tabs['description']['title'] = 'More info';

 return $tabs;
}
content_copyCOPY

https://www.wpexplorer.com/best-woocommerce-snippets/