Home Forums WoodMart support forum Product not adding to cart Reply To: Product not adding to cart

#22610

Artem Temos
Keymaster

Hi,

It will not work with our theme AJAX adding to cart since our scripts are not aware about any custom fields that added externally and not related to WooCommerce. So you need to disable AJAX add to cart on single product adding the following code snippet to the functions.php file in your child theme

add_filter( 'basel_ajax_add_to_cart', '__return_false' );

Regards