I am working with woocommerce plugin. I currently have product virtual reviews using Faview plugin, and then it’s related products, complete the set and you may also like section in product detail page. I would like to change the display order. I want to display product, it’s related products and then it’s reviews. I have tried changing the priority in functions.php but it doesn’t work.
Any help would be appreciated!
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 );
Tasnim Mostafa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.