Hi I’m using the theme as a catalog, I have a plugin that must be placed below the big image and hooks the woocommerce_after_single_product_summary. But some how the theme cut it off. When I switched to a standart wordpress theme, everything is ok.
Here is that portion of code in this plugin
if ( (get_option(‘vartable_position’) == ‘under’ && get_post_meta($post->ID, ‘disable_variations_table’, true) == 2) || (get_option(‘vartable_position’) == ‘under’ && get_option(‘vartable_disabled’) != 1 && get_post_meta($post->ID, ‘disable_variations_table’, true) != 1 && empty($checkcat)) ) {
remove_action( ‘woocommerce_variable_add_to_cart’, ‘vt_woocommerce_variable_add_to_cart’, 30 );
add_action( ‘woocommerce_after_single_product_summary’, ‘vt_woocommerce_variable_add_to_cart’, 5 );
}
‘under’ – means under product image