Pi Zi
Forum Replies Created
-
You’re right Dan. It’s already on the TODO-list 😉
Late response, but I still have to investigate this issue…
Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] mailto code positioning issueThat’s interesting. Maybe it has to do with some CSS styling in your theme. The wpml_mailto only creates a html link (
<a>).I thought I already answered this issue. Probably something went wrong on submission.
Renaming the plugin is not really an option.
Maybe it works to disable a certain firewall rule?Could you send me an email with the url of your site?
Thanks Goose.
I thought the blogroll was removed from the core since version 3.5.
On my wordpress it does work. Maybe there’s a conflict with another plugin?
That’s correct. The documentation will be updated.
Just by adding
rel="nofollow"to the particular link.Regards, Victor
If you want to display an inline image to all external links, you could use the
wpel_external_linkfilter. You need to add some PHP code to f.e. the functions.php of your theme:function custom_external_link($created_link, $original_link, $label, $attrs = array()) { // add image to label $label_with_img = '<img src="data:image/png;base64,...Base64 data">' . $label; // replace label with label and image return str_replace($label, $label_with_img, $created_link); } add_filter('wpel_external_link', 'custom_external_link', 10, 4);It cannot reproduce this issue. Do you have a html code example?
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Missing 1.5.1 changelogI don’t know why it’s not being updated. Just like the “last updated” date.
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Missing 1.5.1 changelogThat’s weird. It’s in the readme file:
http://plugins.svn.wordpress.org/wp-external-links/tags/1.51/readme.txtV1.51 contains 2 changes:
* Fixed also check url’s starting with //
* Fixed wpel_external_link filter also applied on ignored linksForum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Internal LinksHi E,
Thanks.
You can addrel="external"to your internal links and the plugin will treat them as external links.Regards,
VictorTested it. Should be working.