• Resolved axelte

    (@axelte)


    Hi, congrats for your plugin. It is great! I have some issues with the minicart as it is conflicting with another plugin. Is there anyway that I can disable it only in the minicart? Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author taisho

    (@taisho)

    Hello,

    could you please post a link to the website? I would check how this mini cart plugin operates. What other plugin do you suspect a conflict with?

    Best regards,

    Ryszard

    Plugin Author taisho

    (@taisho)

    Also, to answer the main question – for now, there is no way to turn it off for a specific page, let alone for a mini cart.

    Thread Starter axelte

    (@axelte)

    Hi, thanks for your quick answer. The other plugin is called food online. Cant share a link as I am working in localhost currently. Your plugin is disabling the +/-buttons of that plugin. So is there a way at least to not disable the other plugin buttons? Thanks

    Plugin Author taisho

    (@taisho)

    Is the problem that the mini-cart buttons disappear? If yes, the following part of the code near the end of plugin’s PHP file is responsible and removing this code can be a temporary fix:

    .quantity .minus:not(#qib_id):not(#qib_id), .quantity .plus:not(#qib_id):not(#qib_id) {
        display: none;
    }

    Of course, this change would be lost after the plugin update. So if it works, even better would be using something like this in child theme CSS or extra CSS of your theme:

    .quantity .minus:not(#qib_id):not(#qib_id), .quantity .plus:not(#qib_id):not(#qib_id) {
        display: block;
    }

    block or inline-block whatever looks good.

    Thread Starter axelte

    (@axelte)

    Thanks for the code. However the problem is that the other plugin already have +/- buttons and using your plugin leads to have the +/- buttons duplicated in a way that are only working your buttons but not the others. So is there a way that your plugin dosent disable the buttons of the other plugin?
    Thanks

    Plugin Author taisho

    (@taisho)

    Hello,

    unfortunately, there is no such way for now. I will need to do tests on various mini carts and hopefully, there will be a good way to:
    1. Correctly detect each mini-cart.
    2. Stop the custom WooCommerce quantity template from executing for such mini-cart.

    Best regards,

    Ryszard

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Disable in Minicart’ is closed to new replies.