Which plugin – u r using for loading more products.
First contact with that plugin author.
May be, that plugin is not compatible with WooCommerce filter hook.
If they failed to solve, Please contact with our support.
By the way, I visited your site, But there not found any input box. How I will get the issue of quantity.
See Screenshot: https://prnt.sc/QEKLJWPjLy3c
Thanks
Saiful
CEO and Founder of CodeAstrology
Hi Saiful, i’m using Elementor and Crocoblock. I’m in contact with Crocoblock at the moment. You should be able to see the quantity input now. You had to be logged in before you could se it before.
- This reply was modified 1 hour, 52 minutes ago by Mortenz.
I have created this Loom so you can see the problem: https://www.loom.com/share/e059c4e139b34e2987424155add74933
I have got your issue.
Please use following code to your child theme’s functions.php file.
function wcmmq_set_min_value_as_input_value($args){
if(is_cart()) return $args;
$args['input_value'] = $args['min_value'] ?? 1;
return $args;
}
add_filter('woocommerce_quantity_input_args','wcmmq_set_min_value_as_input_value',999999);You also can get this code from a Github gist: https://gist.github.com/codersaiful/751f8d8c8a2ea2d40c088929aa3b3554
Please let me know.
If not work, Please contact over support:
It works. Thank you so much!
Thanks a lot for inform us.
Can we get review now?
By the way, we will add the following code at main plugin.
