Support » Plugin: MC4WP: Mailchimp for WordPress » No check Box in Comments

  • Resolved whitedragon551

    (@whitedragon551)


    I have MailChimp for WordPress configured to use the only MailChimp list I have.

    The rest of the configuration is with double opt in enabled, Add the checkbox to comment and registration forms, pre check the boxes as yes, and load some default css as yes. Most of these are default options.

    The optin checkbox appears properly in the registration form. The opt in checkbox does not appear in my comments area though. I just left a test comment on one of my blog posts and shortly afterwards got an email that I had opted in.

    My site is at tystechtalk.com

    https://wordpress.org/plugins/mailchimp-for-wp/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello,

    I checked your website and even signed up (as leaving a comment required users to sign-up).

    Your theme’s CSS has a rule which is hiding the checkbox added to your comment form by our plugin. The CSS code in question is:

    #respond label {
        display: none;
    }

    To fix this, you would need to add below CSS to your theme’s CSS file.

    #respond .mc4wp-checkbox-comment_form label {
        display: block !important;
    }

    Thread Starter whitedragon551

    (@whitedragon551)

    Do I replace #respond label with the code you gave or do I keep both?

    Thanks in advance.

    Thread Starter whitedragon551

    (@whitedragon551)

    Do I replace #respond label with the code you gave or do I keep both?

    I tried just adding the bottom portion with no change. Not sure what removing the original would do.

    Thanks in advance.

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hey whitedragon551,

    I just checked your website and I’m able to see the checkbox with the text “Sign me up for the newsletter!” just below the recaptcha field.

    Thread Starter whitedragon551

    (@whitedragon551)

    I figured it out. The theme I use has a custom CSS option field where I needed to add:

    #respond .mc4wp-checkbox-comment_form label {
    display: block !important;
    }

    Instead of updating the style.css directly.

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hey whitedragon551,

    Thank you for updating us. Feel free to create a new request if you run into any other issues.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘No check Box in Comments’ is closed to new replies.