On Shoptimizer’s product pages, the star rating normally appears beneath the small description area. If you would like to reposition this to its more traditional location beneath the price, you can use the following code snippet.
Within either the functions.php file of your child theme, or via the Code Snippets plugin, add the following.
1 2 3 4 5 |
add_action( 'init', 'cg_move_pdp_reviews' ); function cg_move_pdp_reviews() { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 20 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 ); } |
Appearance > Customize > Additional CSS:
1 2 3 4 |
div.product .woocommerce-product-rating { margin-bottom: 1em; clear: both; } |