• Resolved amiaboutique

    (@amiaboutique)


    After updating to the storefront theme, during checkout the blue boxes that says “Have a Coupon? Enter it here” and “Have a gift card? Enter it here” are clickable, but nothing happens. There are no boxes for the customer to enter their coupon or gift card code in. Any help on how to fix this would be greatly appreciated!

    Thanks

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • @amiaboutique,

    I hope this issue comes from your giftcard plugin, Tray after disable plugin.

    Your site dev console shows following error

    scripts.js?ver=4.9.4:46 Uncaught TypeError: $(...).datepicker is not a function
        at HTMLDocument.<anonymous> (scripts.js?ver=4.9.4:46)
        at i (jquery.js?ver=1.12.4:2)
        at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)
        at Function.ready (jquery.js?ver=1.12.4:2)
        at HTMLDocument.K (jquery.js?ver=1.12.4:2)

    Rajan V

    Thread Starter amiaboutique

    (@amiaboutique)

    @rajanit2000)
    I do know that my gift card plugin is causing issues with the site. Unfortunately, this doesn’t seem to be one of them. Even after disabling it, the same problem is still occurring. Any other ideas?

    Thanks

    Oh ok, Just add this code on your child theme footer.php

    <script type="text/javascript">
    jQuery('.showlogin').click(function(){
        jQuery('.woocommerce-form-login').slideToggle();
    });
    
    jQuery('.showcoupon').click(function(){
        jQuery('.checkout_coupon').slideToggle();
    });
    </script>

    just before the </body> tag

    Rajan V

    Thread Starter amiaboutique

    (@amiaboutique)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘“Add giftcard/coupon code” not working’ is closed to new replies.