Archived topic
Remove custom quantity buttons for woocommerce gp premium in child theme
1 reply · Started by Predrag on March 8, 2023
Viewing posts 1–2 of 2
Hello,
I am using gp premium plugin for woocommerce and I need to set 'quantity_buttons' to false in child theme functions.php
Please can you help me how to do it.
Hi there,
try this PHP Snippet:
add_filter( 'option_generate_woocommerce_settings', function(){
$options['quantity_buttons'] = false;
return $options;
});
This archived topic is closed to new replies.