Move related products section before reviews
-
On the product page, I use the separate reviews section. I would like the related products section to be before the reviews section. How to do it? Thank you
Hello,
Now we are checking the product page and it is already as you describe: https://take.ms/rMSFe
Please clarify.
Best Regards
hello.. yes.. I managed by inserting this code and disabling the option of related products in theme settings, because the disabled option was generating duplicity, showing the related products above and below the reviews. Please tell me if there’s something wrong or that can get better. Thank you
add_action( 'init', 'move_related_products_before_tabs' );
function move_related_products_before_tabs( ) {
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 5 );
}
Hello,
You apply the common practice in this code and it should work well.
If you have any questions please feel free to contact us.
Best Regards