Logo
WHOLESALEKEYS
MICROSOFT PARTNER 365 WINDOWS SQL SERVER WINDOWS SERVER PROJECT VISIO ALL IN ONE PLACE

Shop

This is where you can browse products in this store.

Category
Category
Categories
  • N/A
Product Version
Product Edition
License Term
  • N/A
License Type
  • N/A
Platform Supported
  • N/A
Users Supported

N/A

Devices Supported

N/A

Hi there 👋

Need help? We typically reply in a few minutes.

Start New Conversation

Chat with our support team

Chat on WhatsApp

 

Start Chat

Agent
Agent
👋 Hello! Our support team is here to help. Feel free to reach out with any questions!
Support
Support Team
● Online
0
    0
    Your Cart
    Your cart is emptyReturn to Shop

    Search

    Create an account?

    You can create an account during checkout. Need help? use our live chat
    /** * Fix for WooCommerce Product Card - Prevent Buy Now button from triggering card click * Add this script to your theme or use a plugin like "Insert Headers and Footers" */ document.addEventListener('DOMContentLoaded', function() { // Select all Buy Now buttons within product cards const buyButtons = document.querySelectorAll('.products.elementor-grid .product .woocommerce-loop-product__buttons .button'); buyButtons.forEach(function(button) { button.addEventListener('click', function(event) { // Stop the click event from bubbling up to parent elements (the card link) event.stopPropagation(); event.stopImmediatePropagation(); }); }); // Also prevent the button container from propagating clicks const buttonContainers = document.querySelectorAll('.products.elementor-grid .product .woocommerce-loop-product__buttons'); buttonContainers.forEach(function(container) { container.addEventListener('click', function(event) { // Stop propagation to prevent card click event.stopPropagation(); }); }); });