Hello, Ljimenez,
Thank you for contacting us and for using XStore.
“when i click + and — button theres is an error see attached image” =
We checked the issue and found that your plugin makes own js action for plus/minus actions. We added for you next code snippet in child-theme/functions.php →
add_filter('body_class', function($classes) {
if ( class_exists('WooCommerce') && is_product() ) {
global $product;
if ( $product && $product->get_type() == 'auction' ) {
$classes[] = 'et_quantity-off';
}
}
return $classes;
});
It makes deactivation of built-in XStore theme quantity js actions (plus/minus) for the product with specific type → auction ( https://prnt.sc/glHK5MUdy3Dc )
Kind Regards,
8theme team