hussong
Forum Replies Created
-
Forum: Plugins
In reply to: [EWWW Image Optimizer] French translation errorI would like to add that I really appreciate the work of the plugin author and all translators, thank you!
Great! Will send you an email, thanks so much!
Happy to help and thanks a lot for the super quick follow-up, I really appreciate it!
I can consistently replicate the issue, here’s what I did each time:
- Upload file to Media Library
- FTP to uploads folder and download resulting files
- Rename file in Media Library and let Media File Renamer do its thing
- FTP to uploads folder and download resulting files
Starting out with Media File Renamer Version 2.3.6., here are my actions an the resulting files:
Upload “1.jpg”
1-150x150.jpg 1-300x111.jpg 1-500x185.jpg 1-851x288.jpg 1.jpg
Rename to “abc”
abc-300xabcabcabc.jpg abc-500xabc85.jpg abc-85abcx288.jpg abc-abc50xabc50.jpg abc.jpg
Deactivate “EWWW Image Optimizer Cloud”
Upload “3.jpg”
3-150x150.jpg 3-300x111.jpg 3-500x185.jpg 3-851x288.jpg 3.jpg
Rename to “def”
def-150x150.jpg def-500x185.jpg def-851x288.jpg def-def00x111.jpg def.jpg
Deactivate “Regenerate Thumbnails”
Upload “5.jpg”
5-150x150.jpg 5-300x111.jpg 5-500x185.jpg 5-851x288.jpg 5.jpg
Rename to “ghi”
ghi-1ghi0x1ghi0.jpg ghi-300x111.jpg ghi-8ghi1x288.jpg ghi-ghi00x18ghi.jpg ghi.jpg
Update “Media File Renamer” from 2.3.6 to 2.3.8
Upload “8.jpg”
8-150x150.jpg 8-300x111.jpg 8-500x185.jpg 8-851x288.jpg 8.jpg
Rename to “jkl”
jkl-150x150.jpg jkl-300x111.jpg jkl-500x1jkl5.jpg jkl-jkl51x2jkljkl.jpg jkl.jpg
I can replicate the same on a fresh WordPress install on the same server with the default theme and no other plugins installed besides yours.
Please let me know how I can be of further help, thanks!
Edit: Formatting
Thank you for the quick reply! I will try to replicate this on the site and report back.
Forum: Plugins
In reply to: [Redis Object Cache] Redis Status: Not InstalledIIRC yes, but I’m not 100% sure at this point. Would love to provide better feedback, but we’ve already removed the config, sorry!
Forum: Plugins
In reply to: [Redis Object Cache] The plugin does not have a valid header.Thanks for the follow-up!
While our install is up-to-date, it’s pretty far from “clean” since it has tons of other plugins installed, and I had installed (and uninstalled) the previous version of your plugin before.
Forum: Plugins
In reply to: [Redis Object Cache] Redis Status: Not InstalledSame issue here, Redis is up and running, but the plugin insists upon “Redis Status: Not Installed”.
Does invoice and delivery note printing in the active wpml language work on the frontend out of the box?
How about the backend? Is there maybe a way to filter for languages when printing delivery notes? We would need to print at least the delivery notes in the language that the user had ordered in.
Would be happy about any pointers in the right direction.
Forum: Plugins
In reply to: [Use Google Libraries] Will this run ok on wordpress 4.2I noticed the plugin stopped working this morning after upgrading WordPress to 4.2. No admin pages issues here though.
Thanks for staying on top of this as much as possible, Jason! Love your plugin btw ??
Forum: Plugins
In reply to: [Search by ID] Front End Search by Post_IDHad this issue as well, thanks for the easy solution and the great plugin!
Forum: Plugins
In reply to: [List Custom Taxonomy Widget] Code Submission: Submit on dropdown selectBy the way, when you hide the submit button
//<-- hide the submit button echo '<input type="submit" value="go ?" /></form>';
you’ll still want to echo the closing form tag somewhere.
Just stumbled upon this since I had several taxonomy widgets in the sidebar and they would submit all at once…
Or you could just echo the submit button wrapped in noscript to hide it
echo '<noscript><input type="submit" value="go ?" /></noscript></form>'; // <- show button for noscript
as seen on https://codex.www.ads-software.com/Function_Reference/wp_dropdown_categories
Forum: Fixing WordPress
In reply to: Why is wp_dropdown_categories adding two select dropdowns?You can set up an array of arguments
$args = array( 'show_option_all' => false, 'show_option_none' => ' ', 'orderby' => $orderby, 'order' => $ascdsc, 'show_count' => $showcount, 'hide_empty' => 1, 'child_of' => $childof, 'exclude' => $exclude, 'echo' => 0, )
and pass that to wp_dropdown_categories
$select = wp_dropdown_categories($args); $select = preg_replace("#<select([^>]*)>#", "<select$1 onchange='return this.form.submit()'>", $select); echo $select;
Forum: Plugins
In reply to: [List Custom Taxonomy Widget] Code Submission: Submit on dropdown selectNick, I understand your accessibility concern and applaud your acceptance of a non-accessible fork ??
Ethan, thanks for sharing, just made my day!
Forum: Plugins
In reply to: [Import Export Suite for CSV and XML Datafeed] Child CategoryOK, thanks for the quick reply!