is_type('simple') && ! $root_product->is_type('variable')){
return;
}
if ((is_product() || wp_doing_ajax()) && blocksy_get_post_editor() === 'brizy') {
return;
}
$class = 'ct-cart-actions';
if (get_theme_mod('has_ajax_add_to_cart', 'no') === 'yes') {
$class .= ' ct-ajax-add-to-cart';
}
echo '
';
},
PHP_INT_MAX
);
add_action(
'woocommerce_after_add_to_cart_button',
function () {
global $product;
global $root_product;
global $post;
if (! $root_product) {
return;
}
if (! $root_product->is_type('simple') && ! $root_product->is_type('variable')){
return;
}
if ((is_product() || wp_doing_ajax()) && blocksy_get_post_editor() === 'brizy') {
return;
}
echo '
';
},
100
);