how to enable plus minus only for simple product
-
Use following code. you can use code snippet plugin or add following to your theme’s functions.php
add_filter('wqpmb_show_validation',function($bool, $data){ global $product; if(!is_object($product)) return $bool; if(is_object($product) && $product->get_type() === 'simple'){ return $bool; }else{ return false; } return $bool; },10, 2);
Code from Github: https://gist.github.com/codersaiful/121cc82af31f5eaabb71bbfda089237f
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘how to enable plus minus only for simple product’ is closed to new replies.