LingoSam
Forum Replies Created
-
Forum: Plugins
In reply to: [MotoPress] WordPress 4.1 IncompatibilityThe plugin has been upgraded as of today to 1.5.7.
This resolves the compatibility issue with WordPress 4.1.
I am also experiencing this issue on sites we are developing.
With the “Track outbound click & downloads” setting checked, it is now adding the tracking to non-outbound links, for instance our ‘Read More’ internal links on excerpts.
This is then breaking the link.
Some browsers will let the link work (Chrome), others (IE11) don’t like the mushed up link and will not allow it to work.Forum: Plugins
In reply to: [Register Plus Redux] Email with password to new user does't receivedExact same issue as above.
- Email sent to user to verify email address
- User verifies address
- Admin receives email notification of the above
- Admin approves user
- Email to user with password is not received
I’ve checked the server error logs, and can’t see anything to indicate a problem.
I might try the temporary fix ‘wattsyourwebsite’ has suggested, but I don’t like to edit the core of plugins if I can avoid it.
Would happily allow plugin developers access to investigate.
Forum: Plugins
In reply to: [New User Approve] Users Created on Failed Form SubmissionWe have done some further research.
It appears to be that the plugin is running a ‘registration_errors’ filter before the custom fields can be checked.
If you change the order of priority on your custom fields, this will stop the error.
For example, we changed our custom registration errors in functions.php from:
add_filter('registration_errors', 'myplugin_registration_errors', 10, 3);
to
add_filter('registration_errors', 'myplugin_registration_errors', 9, 3);This fixed the problem.
Forum: Plugins
In reply to: [Search & Replace] Search not workingI am experiencing the same issue.
Could it be iThemes Security (Better WP) has locked some components necessary for the plugin to run?
I regularly use this and it can be heavy handed at times…
Forum: Plugins
In reply to: [AJAX Thumbnail Rebuild] Can't delete or deactivateHave you tried logging in to your site via FTP, and renaming the folder?
This should force WordPress to deactivate the plugin.Forum: Plugins
In reply to: [AJAX Thumbnail Rebuild] Bug in Media Library PopupWe have also experienced this bug in the latest version. The error disables the ability to choose featured image, as well as inserting images into posts.
We also have been using this plugin for a number of years and this is the first instance we’ve noticed of it playing up. Well done to David to spotting the error.
I have been wondering why the Facebook widget would not show. Turns out I had the AdBlock extension on in Chrome, set to disable Social Media.
Once i’d disabled it on the domain I was working on, it magically appeared.
Have you tried this?Forum: Plugins
In reply to: [Members - Membership & User Role Editor Plugin] Role ManagerIt usually doesn’t display when first installed. Try logging out of the site and back in (as admin). Those options should hopefully now appear.
Forum: Plugins
In reply to: [AJAX Thumbnail Rebuild] on more than 18000 images plugin not workingDo you understand you are trying to get the plugin to create 360,000 different sized images?
The whole point of this plugin is that you shouldn’t have to rely upon upping the server memory. It shouldn’t make a difference.
You need to reduce the amount of thumbnail sizes you are using in the site drastically, 20 seems way too many.
Try to get it to under 10, and use a little responsive CSS to allow those fewer thumbnails to be able to work for you in more situations.
Forum: Fixing WordPress
In reply to: Category Descriptions – displaying all but the firstSorry, forgot to add the echo in on it. Thank you for your assistance. This will be a pretty useful loop I can recycle on further projects!
Forum: Fixing WordPress
In reply to: Category Descriptions – displaying all but the firstThat works, thank you!
Someone also pointed out to me that
<?php $cat->category_description ?>
will also work in this instance...and to clarify, Richard was indeed correct.
It was not Nivo Slider clashing with Cookie Law Info, but Nivo Slider clashing with everything…
It had a script incorrectly loaded, which was diagnosed here….
http://wordpress.org/support/topic/plugin-nivo-slider-for-wordpress-stop-loading-jquery-incorrectly?replies=12Hi Simon,
This is usually caused by something other than the Cookie Law Info plugin.
It’s quite likely it’s actually another plugin / the theme you are using loading up a script in the incorrect way.As per Richard’s comment above, disable all of your other plugins, and reactivate them one by one, checking each time to nail down which one is actually the culprit…
Forum: Plugins
In reply to: [Media Library Assistant] Tagged images – nothing foundThey were very useful thank you.
We ended up coming up with a custom solution (on top of the plugin) that did as we wished. You may mark this as closed / resolved.