WooCommerce: Rename Product Description Tab Label
Add following below code in functions.php file, just replace ‘More info‘ with your required Label, that’s it.
add_filter( 'woocommerce_product_tabs', 'woo_rename_tab'); function woo_rename_tab($tabs) { $tabs['description']['title'] = 'More info';return $tabs; }