Home Forums WoodMart support forum Defaullt Product layout, how to change FBT products Reply To: Defaullt Product layout, how to change FBT products

#567385

Hung Pham
Keymaster

Hi themassapothecary,

Please try to add the code below in the functions.php file in your child theme.

add_action( 'init', function () {
    remove_action( 'woodmart_after_product_tabs', array( XTS\Modules\Frequently_Bought_Together\Frontend::get_instance(), 'get_bought_together_products' ) );
    add_action( 'woocommerce_after_single_product_summary', array( XTS\Modules\Frequently_Bought_Together\Frontend::get_instance(), 'get_bought_together_products' ), 5 );
} );

Regards,