Home Forums WoodMart support forum Custom style fix Reply To: Custom style fix

#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 );

}