Site logo

[Support request] Remove custom quantity buttons for woocommerce gp premium in child theme

Home Forums Support [Support request] Remove custom quantity buttons for woocommerce gp premium in child theme

Home Forums Support Remove custom quantity buttons for woocommerce gp premium in child theme

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2559646
    Predrag

    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.

    #2560106
    David
    Staff
    Customer Support

    Hi there,

    try this PHP Snippet:

    add_filter( 'option_generate_woocommerce_settings', function(){
        $options['quantity_buttons'] = false;
        return $options;
    });
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.