Yoren Chang
Forum Replies Created
-
Forum: Reviews
In reply to: [Media Search Enhanced] Worked like a charm and saves a huge amount of time!Hey thanks for letting me know your appreciation to MSC! Glad I can help!
Forum: Plugins
In reply to: [Media Search Enhanced] Multiple search termsHi keytastic,
First of all, thanks for the 5-star review! I understand the use case you mentioned, but it did out of the scope for now (sorry!).
I’ll take your comment as an enhancement request and if I do it in the future, you’ll be the first one to give it a go! Cheers.
Forum: Reviews
In reply to: [Categories Metabox Enhanced] Perfect – just what is neededHey this is the best Thanksgiving gift I’ve got this year!
Forum: Plugins
In reply to: [Media Search Enhanced] show resultsHI,
The media search results will use the default search results template, so you’ll have to style the results with CSS. Unfortunately, for now I can’t see an easier way to style them as the gallery you have.
Cheers.
Forum: Plugins
In reply to: [Media Search Enhanced] No Result?Hey I’ve confirmed the issue is from the theme you use instead of my plugin. Have sent you the solution and now I am marking this as resolved. Cheers.
Forum: Plugins
In reply to: [Media Search Enhanced] No Result?Email just sent! Talk soon.
Forum: Plugins
In reply to: [Media Search Enhanced] No Result?Just did some tests and the front end media search works fine for me. Need more info so I can help you with. A live test site would definitely help.
Forum: Plugins
In reply to: [Media Search Enhanced] No Result?Hi, some users reported this plugin only works with grid mode: https://wordpress.org/support/topic/lovely-but-only-seems-to-work-on-media-grid?replies=14
Not sure why but I still can’t reproduce this on my server after months.
Forum: Reviews
In reply to: [Media Search Enhanced] register ftp uploaded audio file to Media Libraryhey thanks for the info, looks a very promising plugin!
Forum: Plugins
In reply to: [Media Search Enhanced] Media Search Enhanced – search resultsHi Bryan,
You can change the image size with
mse_get_attachment_image_paramsfilter:function my_params( $params ) { $params['size'] = 'full'; return $params; } add_filter( 'mse_get_attachment_image_params', 'my_params' );Regarding your second request, maybe in the future release I’ll manage to add this feature.
Thanks.
Forum: Plugins
In reply to: [Media Search Enhanced] lightbox display not happeningHi, Ari,
Thanks for your kind review. Glad my plugin can help.
Forum: Plugins
In reply to: [Media Search Enhanced] lightbox display not happeningHi Ari,
Thanks for your feedback. It should be fix now, please download again.
Forum: Plugins
In reply to: [Media Search Enhanced] lightbox display not happeningHi Ari,
I just pushed a newer version of MSE to the Github repo:
https://github.com/1fixdotio/media-search-enhanced/archive/master.zipWith this version, the images in the search results are clickable, and you can also add extra attributes to activate your lightbox plugin.
Try to add the following snippets to your
functions.phpto see if it works:function my_get_attachment_url( $url, $post_id ) { $url = wp_get_attachment_url( $post_id ); return $url; } add_filter( 'mse_get_attachment_url', 'my_get_attachment_url', 10, 2 ); function my_params( $params ) { $params['attr'] = array( 'rel' => 'lightbox' ); return $params; } add_filter( 'mse_get_attachment_image_params', 'my_params' );Forum: Plugins
In reply to: [Media Search Enhanced] lightbox display not happeningHey Ari,
I just realized I didn’t make the thumbnails clickable in the search result, so the code above won’t work.
I’ll try to figure out a better solution for you, please stay tuned.
Yoren
Forum: Plugins
In reply to: [Media Search Enhanced] lightbox display not happeningHi Ari,
First you’ll need to make sure how does your lightbox plugin work. In my example, I assume the popup will be activated with:
$(document).ready(function() {
$(‘.image-link’).magnificPopup({type:’image’});
});That’s why I added “image-link” to the class name of my images.
You can send me your theme or code or demo site: yoren[at]1fix.io. I’ll reply to you as soon as I can.
Cheers.