I want users to give their Reviews about the products. Currently have woocommerce installed in my wordpress site . I want to add the comments at the bottom of the Woocommerce shop page (not single product page), below last product in the shop page.
I have tried using wp_list_comments( ); But all it is not showing comments.
Thanks for your help in advance.
I want users to give their Reviews about the products. Currently have woocommerce installed in my wordpress site . I want to add the comments at the bottom of the Woocommerce shop page (not single product page), below last product in the shop page.
I have tried using wp_list_comments( ); But all it is not showing comments.
Thanks for your help in advance.
Woocommerce itself has an option to view comments from dashboard without editing the core. Please Read the documentation fully. But, You need to code little to view the comment option only on shop page. (Suggestion: Enable comment in all pages and do display:none on #comment where ever you don't need it.)
Make sure comments are enabled on the Shop Page.
Then hook the wp_list_comments();
at woocommerce_after_shop_loop
.
Something like this;
function display_comments() {
if (is_shop()) {
wp_list_comments(array( 'format' => 'html5' ));
}
}
add_action('woocommerce_after_shop_loop', 'display_comments');