Pi Zi
Forum Replies Created
-
Forum: Plugins
In reply to: [Email Encoder - Protect Email Addresses and Phone Numbers] encode footerJust to be sure, the plugin is activated?
Forum: Plugins
In reply to: [Email Encoder - Protect Email Addresses and Phone Numbers] encode footerFor example:
<div class="footer-content"> <?php echo apply_atomic_shortcode( 'footer_content', hybrid_get_setting( 'footer_insert' ) ); ?> <?php if (function_exists('eeb_email')) { echo eeb_email('info@somedomain.com'); } ?> <?php do_atomic( 'footer' ); // origin_footer ?> </div>Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] Links in excerptThanks for reporting. I will take a look at it…
What does not work? What is the output?
Which protection method do you use?Forum: Plugins
In reply to: [Email Encoder - Protect Email Addresses and Phone Numbers] encode footerYou can write it in one of your template files of your theme. In your case that would probably be
footer.php.Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] php warningThanks Tobias. New fix in version 1.62.
Forum: Plugins
In reply to: [WP Mailto Links - Protect Email Addresses] Unexpected Output ErrorThe error occured on the plugins page in the admin.
Should be solved in new release 1.51.Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] php warningWill be solved in release 1.61
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] php warning in error logHi Janaa, no idea. Still getting those warnings?
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] jQuery is not definedWill remove the dependency again in the next version, because jQuery will be loaded for all sites, even those who don’t use jQuery. Which is a lot of overhead.
It’s still on the backlog, but I think these and many other specific features should be implemented by using the filter. Else the options page would get very complex.
To keep theme files upgradable, it’s a common practice to use a child theme for customization. That way the parent theme won’t change and can be upgraded without loosing the changes you have made.
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] onclick eventYes, you could use JavaScript to add additional code to the onclick, like:
jQuery(function ($) { $('body').on('click', 'a[rel*="external"]', function () { // additional code... }); });Links get follow by default. The plugin handles external links. Though it provides a wp filter for internal links. You could use this to remove nofollow on internal links.
See the FAQ section.When certain links should not be nofollow.
Or when using an icon, it can be used for certain links not getting the icon (like social buttons).Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Plugin Has Stopped WorkingTrue, the
data-wpel-targetis used by JavaScript to open in a new window.
What’s the url of your site?