Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Jason Coleman

    (@strangerstudios)

    BlueBox, I can’t reproduce this. If you can, can you send me a link to where it is happening. What version of Chrome are you running?

    Thread Starter bluebox3000

    (@bluebox3000)

    This came up when a member was trying to sign up but could not check mark the button. So I tried it on two computers in my office and both had the same issue using Chrome (Version 25.0.1364.172 m). So I had to select “No” in the settings for TOS. Instead I put a verbiage “You agree with TOS etc”

    We are live and I can not change it from “No” to “TOS” on the site (beside short time testing). The site is:

    https://teamseafood.com

    Not sure if that helps.

    Thanks!

    Plugin Author Jason Coleman

    (@strangerstudios)

    BlueBox,

    It looks like the same thing is happening with the PayPal radio buttons.

    Line 597 of style.css is doing some CSS stuff that hides the radios and checkboxes:

    select,
    input,
    textarea {
    -webkit-appearance: none;
    -webkit-border-radius:0;
    border-radius:0;
    }

    You’ll need to tweak that so it only affects certain types of input fields. Maybe:

    select,
    input[type=text],
    input[type=url],
    input[type=tel],
    input[type=number],
    input[type=color],
    input[type=email],
    input[type=password],
    textarea {
    -webkit-appearance: none;
    -webkit-border-radius:0;
    border-radius:0;
    }

    Thread Starter bluebox3000

    (@bluebox3000)

    Thanks.

    Is this fix included in your 1.6 version release?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Check-box for "I agree to T & C" not showing in Chrome’ is closed to new replies.