You must be logged in to see replies to this topic. Click here to login or register
Home › Forums › Plugins › WooCommerce Photo Reviews › Display reviews at bottom instead in a Tab
Hi, I would like to display the reviews at the bottom. We came up with this code but the filters and overall stare ratings aren’t showing. Could u pls help me get it fixed
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘reviews’] ); // Removes the reviews tab
unset( $tabs[‘additional_information’] ); // Removes the additional information tab
return $tabs;
}
add_action( ‘woocommerce_after_single_product_summary’, ‘comments_template’, 10 );
Kind Regards
Chxz
You must be logged in to see replies to this topic. Click here to login or register