I want to use it on the Woocommerce product page.
How shall I do it?
Hi @lucia116,
You should enable the comment form for "Product" post type. More info here: https://wpdiscuz.com/docs/wpdiscuz-7/getting-started/manage-comment-forms/comment-form-settings/#post-types
In case you want to say thank you! 🙂
We'd really appreciate if you leave a good review on the plugin page.
This is the best way to say thank you to this project and the support team.
@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.
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;
}
In case you want to say thank you! 🙂
We'd really appreciate if you leave a good review on the plugin page.
This is the best way to say thank you to this project and the support team.

