Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Stefano Lissa

    (@satollo)

    Hi, can you explain me better your problem?

    Thank you.

    Hi, thanks for your prompt reply. I get this when I check the content of my website on Chrome and it appears as a security issue,but no idea what it really means. I personally dont have any issue with the newsletter plugin, everything works fine.

    I was just wondering why Chrome indicated that it was an issue…

    Plugin Author Stefano Lissa

    (@satollo)

    Hi, I don’t know about this security warning you get. Not that the part

    General Inquiry : <span class=”__cf_email__” data-cfemail=”53303c3d27323027132032273231323d7d303c3e”>[email protected]</span><script cf-hash=’f9e31′ type=”text/javascript”>

    is not generated by Newsletter.

    Ok thanks a lot, maybe some issue with another plugin or WP itself.

    Thanks again, I appreciate your help,
    Romain

    Hello Stefano
    I have script coding email adress:

    <a href="#"><span class="__cf_email__" data-cfemail="365b575f5a7652535b595a5f585d18594451">[email protected]</span><script cf-hash='f9e31' type="text/javascript">

    How to generate code for another email address? example: [email protected]
    Whether it is some special plug-in for WordPress?

    I do not have pages in WordPress – I have a normal web page in html

    Plugin Author Stefano Lissa

    (@satollo)

    Hi, that is not a form generated by my plugins, that code seems by “contact form”.

    @romain22 This is due to the bad habbit of the developers, in the newsletter plugin the team has done the same bad thing. If you inspect at the newsletter form wherever you have used in your website at the email input you will see there pre-filled value of input type email with ‘Email’ and when you click at the input you will see it vanishes and as soon you click at any of the other thing other then that particular input you will see the value comes back.

    <input class="newsletter-email" type="email" required name="ne" value="' . esc_attr($options_profile['email']) . '" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/>

    They need to use a placeholder for that as for what reason the placeholder attribute is created.
    If you want to get rid of that you just need to go to the plugins directory plugins/newsletter/widget.php and in between the line 25 – 30 you will see the above pasted code.

    Newsletter Code:

    $form .= '<p><input class="newsletter-email" type="email" required name="ne" value="' . esc_attr($options_profile['email']) . '" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/></p>';

    Updated Code:
    $form .= '<p><input class="newsletter-email" type="email" required name="ne" value="" placeholder="Email"/></p>';

    And then update the file. After that refresh your page you will see automatically the warning is no more.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘The specified value 'Email' is not a valid email address.’ is closed to new replies.