Change the text next to star rating in WooCommerce

Change the text next to star rating in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'ngettext', 'wc_modify_n_customer_reviews', 9999, 5 );

function wc_modify_n_customer_reviews( $translation, $single, $plural, $number, $domain ) {
    $translation = preg_replace( '%s customer reviews', '%s reviews', $translation );
    return $translation;
}

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