Home › Forums › WoodMart support forum › Custom style fix › Reply To: Custom style fix
October 31, 2018 at 7:18 pm
#86342
Artem Temos
Keymaster
Try to replace that code with this one
add_action('init', 'woodmart_child_hooks', 300);
function woodmart_child_hooks() {
remove_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 38 );
add_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 31 );
}