Changing all words in the review tab on product page
-
Hello, I am looking for a solution to change the word Review/Reviews into Comments or comment on the product pages.
I already used this:
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs ) { $tabs['reviews']['title'] = __( 'Comments' ); // Rename the reviews tab return $tabs; }
But that only changes the Tab name from Reviews to Comments. I want to change the heading inside the tab and also the words like “There are no reviews yet.” and “Be the first to review “Welcome Podcast””
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Changing all words in the review tab on product page’ is closed to new replies.