Home Forums WoodMart support forum Change position of RELATED PRODUCT PAGE and UPSELL-CAROUSEL Reply To: Change position of RELATED PRODUCT PAGE and UPSELL-CAROUSEL

#107689

Artem Temos
Keymaster

Hi,

Try to add the following PHP code snippet to the child theme functions.php file to do this

remove_action('woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
add_action('woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 12);

Regards