Viewing 3 replies - 16 through 18 (of 18 total)
  • Plugin Author Evan Herman

    (@eherman24)

    Since you are receiving the SSL Certifica message, I would recommend taking a look at the following knowledge base article that we have setup, for such cases:

    https://yikesplugins.com/support/knowledge-base/i-receive-the-error-ssl-certificate-problem-unable-to-get-local-issuer-certificate-why/

    Evan

    Great tip!
    We appended your recommended code to our theme’s functions.php and we are back in business.

    The code:

    /*
    * Disable SSL Verify Host/SSL Verify Peer on CURL requests
    * only effects for Easy Forms for MailChimp by YIKES
    */
    function yikes_mailchimp_disable_ssl_verfiy_host_and_peer( $ch ) {
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
    }
    add_action( ‘yikes-mailchimp-api-curl-request’, ‘yikes_mailchimp_disable_ssl_verfiy_host_and_peer’ );

    Thank you Evan!

    Plugin Author Evan Herman

    (@eherman24)

    Awesome! So glad that worked for you.

    Some of our users have issues with that snippet, so thank you for confirming that it is working. I appreciate it!

    Have a great night!
    Evan

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Blank screen’ is closed to new replies.