The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
[Solved] Woocommerce Product Page
(@lucia116)
New Member
Joined: 5 years ago
I want to use it on the Woocommerce product page.
How shall I do it?
(@asti)
Illustrious Member
Joined: 8 years ago
(@kidfrom)
Joined: 4 years ago
Active Member
Posts: 4
Feb 21, 2022 4:32 pm
@asti I wish to edit the `Reviews (1)` tab to `Discussions (1)`. How can I achieve this?
The current solution is to use code snippet from WooCommerce Docs . However, it will not count the number of comments anymore, it will only change the tab name to `Discussions`.
What I have did
1. Checked the wpDiscuz > Phrases and I did not found any.
2. Use Code Snippets plugin.
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8196
Feb 22, 2022 9:10 am
@kidfrom,
Please use this code:
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
global $product;
$tabs['reviews']['title'] = __( 'Ratings' ) . '(' . $product->get_review_count() .')';
return $tabs;
}