Pi Zi
Forum Replies Created
-
mpmchugh, please check the new version. When I test on my local machine your code works fine. So I think it should be fixed…
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Broke my websiteShould be fixed by adding ob flush on wp_footer action hook.
The bug on spaces in href attribute is fixed in version 1.40.
Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] Only enable shortcode?Hello Sporkme, yes it is possible. Just turn off all checkboxes of “Options have effect on” (under “General Settings”).
Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] mailto links don't workIndeed, on your page it is not protected like it should.
How does your mailto look like in the post? (before the plugin changed it)Because when I test it on my WP installation it works like it should:
<a href="mailto:info@cts-eventtechnik.de">info@cts-eventtechnik.de</a>Output:
<a href="javascript:;" data-enc-email="vasb[at]pgf-riraggrpuavx.qr" class="icon_text icon_email default mail-link"><span class="rtl">ed.ki<span class="nodis">1367872453</span>nhcet<span class="nodis">1367872453</span>tneve<span class="nodis">1367872453</span>-stc@<span class="nodis">1367872453</span>ofni<span class="nodis">1367872453</span></span></a>Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Set up exclusion by code?Hello Martin,
I’ve been working on my other plugins. WP External links needs a refactoring and I first wanted to test it on another plugin.A quick solution if you now how to code, is implementing the filter yourself in the file:
[plugin_dir]/includes/class-wp-mailto-links.phpAdd just a line of code on line 278:
$link .= '>'. $matches[ 2 ] .'</a>'; // add this code for the filter: $link = apply_filters('wpel_external_link', $matches[0], $link, $matches[2], $attrs); return $link;Now you can add something to the filter in the file functions.php file of your template, like:
function own_external_link($original_link, $created_link, $label, $attrs = array()) { return 'This is an external link: ' . $created_link; } apply_filters('wpel_external_link', 'own_external_link', 10, 4)I haven’t tested this code yet.
Regards,
VictorForum: Reviews
In reply to: [WP Mailto Links - Protect Email Addresses] error on new versionAs this issue is fixed already, can you show your appreciation by reconsidering your rating?
If you still think it’s only worth one star, please give me some more feedback.Hopefully fixed in version 1.0.2. Please let me know…
Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] Not working in iOS/iPhoneIt does seem to work in Safari on Windows. I don’t have iOS or iPhone, but if someone has the same problem (and/or comes up with a solution), please post a reaction.
My own blog also uses a cache plugin (WP Super Cache) and it works properly.
I will test it locally with W3 Total Cache and get back on it later…Hello Sith, thanks for your demo pages. Could you please keep them live for a couple of weeks?
So I can take a look at it when I have more time.Can you send me an url of the page where the blank page error occurs?
It might have something to do with the html.Forum: Reviews
In reply to: [WP Mailto Links - Protect Email Addresses] error on new versionTry version 1.0.1. This bug should be fixed.
Please test again with the latest version.
Does this problem still occurs in the newest version?