Pi Zi
Forum Replies Created
-
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Cache CachifyOn my tests it does work, only the “ignore links” are not being ignored.
Which is kindof weird. I have to investigate this issue.Cachify does not have an options to clear the cache. You could try to deactivate Cachify and then reactivate. Maybe that will clear the cache.
It should work in the newest version.
In some cases it’s better to remove the protocol http and put this in the “Ignore links” option://subdomain.mydomain.comDoes it work well when you deactivate the other plugin?
Hello Donmcleman,
Thanks for the info and the alternative name suggestions. But I am really attached to the name 😉
Regards,
VictorHello Lenker, that code is only for me load some test scripts. I will use another check to prevent the warning.
Regards,
VictorThat’s right. I still have to find a proper solution.
But I see you found my other plugin for protecting your IDNA domain(s) 😉
Regards,
VictorForum: Plugins
In reply to: [Email Encoder - Protect Email Addresses and Phone Numbers] Content encodingHello Tracy, the start tag should be the same as the end tag:
[eeb_content]0776 282 4201[/eeb_content]The example in the documentation contains a fault. mixed up with the old shortcode:
[encode_content].Thanks GermanKiwi. I will take a look at this.
Thanks, good point. Fixed in version 1.1.0.
Yes, same here.
When you clear the cache and you load the page for the first time, it is shown the right way. But Lite Cache does not save the right output.A workaround is to disable the option “All contents (the whole <body>)” of “Apply plugin settings on…”. But I don’t know if that’s enough in your case.
On my blog I use WP Super Cache and it works fine.
Jay, good job 😉
When I test with Lite Cache it works fine. Did you empty the cache first?
Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] Save Changes hangs in limboWebsherpa, could you try the new version?
You exclude pages by using the filter:
function special_mailto($link, $display, $email, $attrs) { global $post; $exclude_pages = array(18, 22); if (in_array($post->ID, $exclude_pages)) { // use html entity to prevent replacing email by protection text return str_replace('@', '@', $email); } return $link; } add_filter('wpml_mailto', 'special_mailto', 10, 4);You can add this code to the functions.php of your theme.
Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] Copy email address?It’s part of the protection method. Else it would be less secure.
I asume most users would click on the link instead of copying the emailaddress.