Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #3693084
Custom quantity does not work
Open

Comments

  •  1
    Mario started the conversation

    Hi,

    First of all, great plugin!

    But we have a problem. We use the "custom quantity". However, I can click 1,2,3,4,5 etc., but it has no effect on the price or the quantity that actually ends up in the shopping cart. The price does not change.

    We use the latest free version 7.3.4
    Do you have any ideas?

    Best regards
    Mario

    Attached files:  komponenten-auswahl.JPG
      cart.JPG

  •  1,226
    Dustin replied

    Hi Mario,

    Please provide me with a product link so I can check it first.

    Best regards,
    Dustin

  •  1
  •  1,226
    Dustin replied

    Please add the custom code below. (How to add custom code? ↗):

    add_action( 'wp_footer', function () {
        ?>
        <script type="text/javascript">
          (function($) {
            $(document).on('click touch', '.wooco-plus, .wooco-minus', function() {
              var $qty = $(this).closest('.wooco-qty').find('.qty');
              $qty.trigger('keyup');
            });
          })(jQuery);
        </script>
        <?php
    }, 99 );

    If it still doesn't work, please send me your website credentials (wp-admin link, username, and password) or create a dev/staging site with the same configurations so I can check and fix any issues.

    Best regards,
    Dustin

  •  1
    Mario replied

    thank you very much, it works!