• Resolved neallos

    (@neallos)


    Hi!

    Suddenly my radio buttons are not selectable any longer. It has been working perfectly fine for years, but suddenly it stopped working.

    I’ve been trying to find out what is causing the problem, by disabling the plugins and theme one by one. While doing so I’ve found out that the radio buttons are working perfectly fine with the 2021 WP theme. After switching back to Uncode theme the radio buttons are non-selectable again.

    So I’ve found the conflict between these two. But now, what is specifically causing this issue and how do I solve this conflict?

    Hope you can get me in the right direction.

    Thanks!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @neallos

    You may have customized the radio button CSS because the theme’s style-custom.css file has below code:

    .style-dark .headings-bg,
    .style-light .style-dark .headings-bg,
    .style-dark input[type=radio]:checked:before,
    .style-light .style-dark input[type=radio]:checked:before {
      background-color: ;
    }
    .style-light .headings-bg,
    .style-dark .style-light .headings-bg,
    .style-light input[type=radio]:checked:before,
    .style-dark .style-light input[type=radio]:checked:before {
      background-color: ;
    }

    Which should be like as below:

    .style-dark .headings-bg,
    .style-light .style-dark .headings-bg,
    .style-dark input[type=radio]:checked:before,
    .style-light .style-dark input[type=radio]:checked:before {
      background-color: #ffffff;
    }
    .style-light .headings-bg,
    .style-dark .style-light .headings-bg,
    .style-light input[type=radio]:checked:before,
    .style-dark .style-light input[type=radio]:checked:before {
      background-color: #303133;
    }
    Plugin Author Takayuki Miyoshi

    (@takayukister)

    It is not a “conflict”, but just that the theme is one-sidedly interfering.

    As the theme you use is a commercial one, we can’t help you on these support forums. I can only advise you to report about the failure to the theme seller.

    Thread Starter neallos

    (@neallos)

    Hi @jainilnagar
    Thanks for your great response. By adding the CSS the problem got solved and the radio buttons are working again 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Radio buttons not working’ is closed to new replies.