How to Rename additional information, description, reviews tab woocommerce in porto theme
Renaming Tabs
Use the following snippet to rename tabs.
You just create a child theme if you know how to create or just edit the current theme in function.php
Add this code at the end
/** * Rename product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs ) { $tabs['description']['title'] = __( 'More Information' ); // Rename the description tab $tabs['reviews']['title'] = __( 'Ratings' ); // Rename the reviews tab $tabs['additional_information']['title'] = __( 'Product Data' ); // Rename the additional information tab return $tabs; }
Comments
Post a Comment