WPReady
Forum Replies Created
-
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Plugin Vanished from WP LibraryHi there, this is the current Nextcellent status:
I’ve added few fixes needed for running Nextcellent with the last WordPress version.
Also I’m fixing several vulnerabilities, some of them VERY serious. WordPress reviewers were very kind pointing me the issues so far. Some (minor) functionality will be cut in the next version in order of getting the release working properly.Finally, every time I found a vulnerabilty, I’m ending up finding more things to fix, making this release painful to finish.
I’ve been promising a new version July 1st, but it will take two or three days more. My apologies for the delay. Stay tuned!
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Plugin Vanished from WP LibraryNextcellent is different from NextGen…
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Plugin Vanished from WP LibraryThe plugin currently is down due insecurity reasons.
When the plugin is fixed it will be up.
Our apoligies for the delay.Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] PHP7 compatibilityThanks for your feedback
On December we’ll release an update correcting PHP Compatibility issues and other bugs.
Stay tuned.Forum: Reviews
In reply to: [NextCellent Gallery - NextGEN Legacy] THANK YOU! THANK YOU! THANK YOU!Hi AW,
We appreciate your comments. For now we ask everybody happy with it that rate it accordingly!
Thank you!Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Masonry style and fullwidth masonryI’ll be personally looking into this matter, but I can’t assure if masonry will be present in next version.
Please contact me to take a look and see what else we can do.
thanksHi papijo,
interesting hack 🙂
I agree with you this is an annoying situation.Looking your solution, the plugin might have a way to deny/allow some options to prevent users making undesired actions.
Roles options provide some degree of control but not that fine grained.
I’m sorry for the delay. Since I’m dealing with a hosting issue, temporarily you can grab a copy for this link
Nextcellent Reference GuidePlease send us a message from the site to answer your other question(s).
I tested this solution and it worked fine with current Nextcellent installa
With minor changes, It will also solve issues between Polylang and other plugins.The code needs to be added to current theme in functions.php
Please check this and see if this work for you.//Workaround translation for Nextcellent (can be applied to other plugins)
//STEPS
//1-Add strings to be dinamically translated to the Polylang collection
if (function_exists(‘pll_register_string’)) {
pll_register_string(‘nggallerySlide’,'[Show as slideshow]’);
pll_register_string(‘nggalleryPictureList’,'[Show picture list]’);
}
//2-Go to PolyLang Languages, translate the strings included for every language//3-Add this filter localization for Nextcellent
//Reference: https://polylang.wordpress.com/documentation/documentation-for-developers/functions-reference/
function filter_translation($to_translate) {
if (function_exists(‘pll__’) && ($to_translate!=””)) {
return pll__($to_translate);
}
return $to_translate; //safe way out if Polylang is disabled / empty strings.
}add_filter(‘localization’,’filter_translation’,10,1);
The links could be affected depending on how WP and Nextcellent are using permalinks.
I’d recommend reading the Nextcellent manual page 62, where we explain how permalink works. Please check the main site in few hours to download a copy of the manual (currently site is not available, there is an upgrade running).
If you need more assistance, get back here and we’ll try to help you.
Confirmed the behavior you mentioned, there will be a minor fix to be delivered shortly.
However, even if we correct the issue, there is another problem you might consider:As an example, if you decide to change the first string ([Show as slideshow]) to ‘[Show Slide]’ this text will be displayed on ALL languages. Since the new value is saved on the database, it also implies that that Poedit can’t help it here (!)
The fix will correct the behavior so .po files will work again, but currently Nextcellent can’t help you in the above scenario.
Does it make sense to you?
It seems the issue is because the string is translated before ,but not after.
However, both strings should suport wpml,polyglot or qtrans.
I have to run few tests to confirm the behavior.Hi papijo,
The complete words ‘[Show as slideshow]’ and ‘[Show picture list]’ are translatable and they are present in the nggallery.potMaybe the problem is that words are including ‘[‘ and ‘]’ chars?
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] 1.9.31 : fixes for 1.9.30You are right papijo
It’s corrected
Thank you!