yoren
Forum Replies Created
-
Hey Frederic,
Yes, 10 is the cap, but I’d recommend against editing class-media-search-enhanced.php directly — your change would be wiped out the next time the plugin updates.
That apply_filters( ‘mse_max_search_terms’, 10 ) line exists specifically so you can override the value from outside the plugin. Drop a small snippet into your theme’s functions.php (or use a snippet plugin):
add_filter( 'mse_max_search_terms', function () {
return 20; // or whatever number you need
} );That will survive plugin updates and achieve the same result. Let me know if you hit any trouble.
Cheers,
YorenForum: Plugins
In reply to: [Media Search Enhanced] Updating from wrong sourceHello Mark,
1.0.0 has been released to WP.org today. I’m marking this as resolved but feel free to circle back with any questions. Thank you!
Hello Frederic, in the latest 1.0.0 release I’ve added a feature in the admin that you can search multiple strings with “,” (comma) up to 10 strings by default.
I’m closing this ticket for now but feel free to open new one if you have questions. Thank you!
Forum: Plugins
In reply to: [Media Search Enhanced] Updating from wrong sourceHey Mark, thanks for reporting this! I did not know things like this can happen. Yes I will release v1.0.0 on WP.org once I have properly QA the features. Will do it before the end of April!
Hi Frederic, we currently do not support this feature but I’ll look into it. Thanks for the feature suggestion.
Forum: Plugins
In reply to: [Media Search Enhanced] Lovely, but only seems to work on media gridHey mtcreations, I just did some tests, and it seemed worked fine here. Here’s the screencast http://g.recordit.co/BxbN9ZLNiH.gif.
(If there’s a 403 forbidden at the screencast page, please copy and paste the link to your browser)
Can you let me know what’s the filename?
Forum: Plugins
In reply to: [Categories Metabox Enhanced] SuggestionHello, Ben,
Thanks for your suggestion. That sounds good ideas. I’ll try to implement them in the future release.
Forum: Plugins
In reply to: [Categories Metabox Enhanced] Add support for TaxonomyHi, Matthew,
This plugin supports all hierarchical custom taxonomies by default, but you’ll need to change the settings manually. Please check this screenshot out:
http://cl.ly/image/3l3c233x0t2g
Let me know if it’s working for me. Thanks.
Forum: Plugins
In reply to: [WP Db Abstraction] [Plugin: WP Db Abstraction] SELECT TOP 0?I found someone has submitted this to bugs tracker: http://sourceforge.net/tracker/?func=detail&aid=3485384&group_id=315685&atid=1328061,
and he provided another solution about it.You could check out the previous topic for solutions: http://ww.wp.xz.cn/support/topic/plugin-wp-db-abstraction-select-top-0.
For me, it works.Forum: Plugins
In reply to: [WP Db Abstraction] [Plugin: WP Db Abstraction] SELECT TOP 0?Just found another way to fix this issue.
Because I found in 1.1.3, the same $limit_matches equations worked, so I read the changelog and I think is the line 726:
$pattern = ‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)(;{0,1})$/is’;
should be changed back as 1.1.3:
$pattern = ‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)$/is’;
Although it seems to fix the “limit regex to catch queries with ; at the end” issue, but will cause new issue here.
Forum: Plugins
In reply to: [WP Db Abstraction] [Plugin: WP Db Abstraction] SELECT TOP 0?@ zcaotica,
Thank you so much for posting this! I even reinstall my server just for this issue… Wish I could find your post earlier.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Error: Unable to list bucketsAfter I corrected the server time, which was 16 mins late, the problem resolved.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Error: Unable to list bucketsYes, the cURL is enabled on my server, and the previous version worked very well, except I got the same problem as: http://ww.wp.xz.cn/support/topic/351051?replies=7, that’s why I upgraded to .8.5.2.