• Resolved Farhat Ullah

    (@farhat7776240)


    1) When I click on plus or minus button in the cart it show me only loading when I refresh my site then the loader remove.How can I fix this?

    2) The product remove button not showing with product in the minicart. How to fix this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter Farhat Ullah

    (@farhat7776240)

    Add this code to your footer.php

    //plus and minus buttons in mini cart
          $(document).on('click touch', '.woofc-item-qty-plus, .woofc-item-qty-minus', function(){
            setTimeout(function(){
              //remove inner loading from minicart
              jQuery('.woofc-inner').removeClass('woofc-inner-loading');
              //remove loader from count total top
              jQuery('.woofc-count').removeClass('woofc-count-loading');
              $("#woofc-count").append('<div class="total_amount">R<?php  echo $woocommerce->cart->get_cart_total();?></div>');
            }, 3000);
          });
Viewing 1 replies (of 1 total)
  • The topic ‘woofc-item-qty’ is closed to new replies.