• Hello!
    First of all, I would like to say what an amazing plugin.
    I’ve tried all of configurator plugin and this is the best, that’s why I’m planning to buy 2 of the add-ons.

    However, as you can see on the product page (Before going to the configurator page), there’s an ‘Add to Cart’ button showing, how do I disable it?

    Thank you in advance!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter sansoon

    (@shandysuta)

    Solved it via CSS, don’t know if there’s any better way I should’ve known.

    I am using this CSS:

    button[disabled] {
        display: none !important;
    }
    Plugin Contributor Marc Lacroix

    (@marcusig)

    Hi there,

    Glad you like the plugin! 🙂

    Something seem to be adding inline style to the button, superseding the normal CSS used to hide the button.
    Your CSS might work, but might not be specific enough and end up hiding buttons which should not be.

    So you could use this more specific CSS:

    .is_configurable:not(.enable-add-to-cart) div.product form.cart .quantity, .is_configurable:not(.enable-add-to-cart) div.product form.cart .single_add_to_cart_button {
        display: none !important;
    }

    Marc

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add to cart button still showing’ is closed to new replies.