Rename tab Discussion to Reviews

How can I do it? Thank you.

Hi there,

Please add this code in the functions.php file of the child theme:

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

	$tabs['reviews']['title'] = __( 'Reviews' );				// Rename the reviews tab

	return $tabs;

}

Hope this helps.

Thanks, it helped.

1 Like

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.