Hey @beachtours – thank you for your answer.
Nope, I got your questions ??
My answer might be not totally clear, so please let me clarify it down below:
In case the code looks fine within the backend, it doesn’t necessarily mean that any other plugin is not validating it again before it gets displayed within the frontend.
The code that actually is visible on your site is the following one:
<td
style="border: 0px; text-align: left; padding: 0;">
<a
href=mailto:info@parkhotelleipzig.de>Mail an das Park Hotel</a></td>
As you can see there, the ” (double quotes) are missing (My assumption is that the theme or pagebuilder you use replaces them).
In case you use Chrome, you can use the following link to check this issue (Simply paste it within your chrome browser):
view-source:https://wordpress.p545817.webspaceconfig.de/
Once you will see the code there, simply search on the page for Mail an das Park Hotel
There you will see how the code gets delivered directly from your server.
Since this is no proper HTML, our plugin can’t recognize it, which results in breaking the code.
In case you want to use it with the strongest encoding we offer, there is still a way of doing that.
There’s only one small change you need to sacrifice: The text Mail an das Park Hotel
Instead of the text, we will show the email as well (which gets delivered in an encoded form, so its definitely safe).
Here’s how you can archive that:
Simply remove the following code within your backend…
<a href="[email protected]">Mail to the Park Hotel</a>
… and replace it with only your email…
[email protected]
Once you have done that, please go to your WordPress dashboard -> Email Encoder -> and activate the checkbox for the Advanced settings. After you clicked save, you will see further settings. Please head from there to Protect… and activat the checkbox for plain emails by converting them to mailto links
Once you clicked save, we will convert the raw emails to clickable mailto links on your site and everything uses the strongest encoding available. ??
I hope this helps so far and if you have further questions, please reach out at any time.
PS: To checkif the encoding works fine, you can use our email checker tool: https://ironikus.com/email-checker/
-
This reply was modified 4 years, 8 months ago by Ironikus.