About woocommerce product review widget

Hi guys,

I found that Product Content and Additional Information in Product Tabs have separate widgets, but Reviews don’t have, so I can’t achieve the desired page layout, am I missing something? Or am I not finding a way to use it?

There is a Comment widget, but no Product Review functionality, such as Star, nor is it compatible with other plugins (the comment plugin I use is Photo Reviews for WooCommerce).

I found a solution that works now, but it’s not a perfect solution, it would be more perfect if there was a separate Product Review widget.

My current method is to use the Product Tabs component and insert code in function.php, hoping to help friends who face the same problem.

//Remove WooCommerce Tabs - this code removes all 3 tabs - to be more specific just remove actual unset lines
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘description’] ); // Remove the description tab
// unset( $tabs[‘reviews’] ); // Remove the reviews tab
unset( $tabs[‘additional_information’] ); // Remove the additional information tab
return $tabs;
}

1 Like

UpVoted this request: Ideas – Bricks

Thanks for the temporary solution.