Change the reviews tab text in WooCommerce

Change the reviews tab text in WooCommerce.

Snippet Type

Execute on Child Sites

Snippet

function change_reviews_tab_text( $tabs ) {
    $tabs['reviews']['title'] = 'Testimonials';
    return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'change_reviews_tab_text' );

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