joel_birch
Forum Replies Created
-
Forum: Plugins
In reply to: [NoFollowr] not working properlyHello. In order to help you debug this, I think I’d need to know which other plugins you have activated and also which PHP version you are running.
Forum: Plugins
In reply to: [Timber] New bug version 1.2.3Square bracket syntax for arrays requires PHP v 5.4, if I remember correctly. If you can update PHP on your server it’s highly recommend.
Forum: Plugins
In reply to: [NoFollowr] parse error?Sorry about that! I began using a feature of PHP 5.4, without thinking how many people may still be stuck on 5.3 and below.
I have pushed an urgent update which corrects this. The auto-update seems to be slow today, but if you need the update urgently you can download it from https://nofollowr.com and install manually. Or just wait until the auto-update appears in your plugin page.
Thank you for this report!
Joel Birch.
Great, thanks for prioritising this, we really appreciate it! I’ll look forward to the update.
Cheers.
Forum: Plugins
In reply to: [WP Approve User] 404 error for the JS fileThe issue seems to be on line 196 of the wp-approve-user.php file.
$suffix = defined( 'SCRIPT_DEBUG' ) AND SCRIPT_DEBUG ? '' : '.min';
Should be:
$suffix = (defined( 'SCRIPT_DEBUG' ) AND SCRIPT_DEBUG) ? '' : '.min';
Note the brackets around the condition part of the ternary statement. This fixes the issue for me, so hopefully the plugin will be updated to include this fix.
Sorry, I wasn’t clear. I’m just suggesting a feature for you to add to the plugin whereby it adds an opt-in checkbox to the registration form.
I’m hoping this can be fixed soon as it clogs up my error logs and makes debugging difficult. Thanks in advance.
Forum: Reviews
In reply to: [NoFollowr] Works great butInteresting feature suggestion, thanks.
Forum: Plugins
In reply to: [NoFollowr] Automatically NoFollowing ALL LinksI guess this resolved itself.
Forum: Plugins
In reply to: [NoFollowr] Plugin not workingI have tested that the plugin works all the way up to WP 4.0 given the default twentyfourteen theme and no other plugins.
Forum: Plugins
In reply to: [NoFollowr] Love the plugin but no longer seems to work on my WP 3.8.1Now tested to work on WordPress 4.0 and I have updated that note on the plugin page.
Forum: Plugins
In reply to: [NoFollowr] NoFollowr doesn't work at ALL!I wish I could help you all. @stardaug you mentioned W3 Total Cache – are you using that plugin? If so, do you have “Don’t cache pages for logged in users” unchecked? If you click a nofollowr icon then edit the page and go to text view is the nofollow rel attribute altered?
@cspeake your issue seems to be unrelated and would need proper debugging.
Forum: Plugins
In reply to: [NoFollowr] Code fails W3C validationOmitting the closing slash on a self-closing element is valid HTML5. Please see this Stack Overflow answer (plus official spec references it provides).
Thanks very much, that worked. Coincidentally, it was also the solution for another plugin with a similar issue, so double thanks!
Forum: Plugins
In reply to: [NoFollowr] NoFollowr doesn't work at ALL!I’ve heard this issue a few times over the years so it doesn’t seem related to specific WP updates. Whenever I attempt to recreate the issue so I can debug it the plugin works perfectly. I wonder if you have caching interfering, or…I don’t know what else. More information would be appreciated because it’s impossible to debug without access to the problem website in question.