• I have the default radio buttons selected, and they’re showing. However the WooCommerce dropdown is also still showing.

    WP, WC, & WPC are all fully up to date.

    The drop down is also showing on the home/catalog page.

    • This topic was modified 3 years, 3 months ago by andrewm57.
    • This topic was modified 3 years, 3 months ago by andrewm57.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi @andrewm57,

    I’ve checked the link site you sent and found that there is only default radio buttons type. There is no problem as you said.

    Can you provide us with the detailed screenshots of issue in the front-end and exact product link as well as the setting of the back-end for us to check and help you if the issue is still happened?

    Regards,

    Thread Starter andrewm57

    (@andrewm57)

    That’s because this is a live site and I needed to mask the pulldown. So I used custom CSS to make ‘mfn-variations-wrapper’ ‘display:none’. You can see it in the code.

    Here’s the settings:
    https://kingcountyfirewood.com/tmp/wpc.png

    And the page without the CSS mask:
    https://kingcountyfirewood.com/tmp/pull-down.png

    Plugin Author WPClever

    (@wpclever)

    Hi @andrewm57

    Seem the theme added this section https://www.screencast.com/t/nxNPYYup, so using CSS code to hide it is exactly.

    To show the add to cart button, please add below CSS code:

    .woocommerce-variation-add-to-cart {
        display: flex !important;
    }

    And the result https://www.screencast.com/t/1F2HIiRHva

    Thread Starter andrewm57

    (@andrewm57)

    I have hidden both the drop down and cart with CSS because we’re still trying to add the payment gateway. So only the radio buttons are showing, on purpose. However the drop down is still be written out.

    But previously the radio buttons replaced the drop down, and now both the buttons and the drop down are being output.

    Hey, @andrewm57 I had the same problem,

    this is how I fixed it ??

    // remove dropdown quantity selector when woovr is loaded, this prevents the form from sending the dropdown info, instead of the radio button info, when the button is clicked.

    jQuery( document ).ready(function() {
    if (jQuery(“section”).has(“.woovr-variations”)) {
    jQuery(“div”).remove(“.mfn-variations-wrapper”);
    }
    });

    Thread Starter andrewm57

    (@andrewm57)

    I added that JS to my child theme, and got a critical error. I’ve hidden the drop-down with CS for now.

    https://kingcountyfirewood.com/product/alder-firewood/

    • This reply was modified 3 years, 1 month ago by andrewm57.
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Drop down not removed’ is closed to new replies.