Wanted : Wordpress Gallery Plugin With Search

by 4 replies
5
Hi All!

Anybody know of a wordpress plugin with search capability on the frontend? I am using nextgen gallery currently ver 1.9 that still has alex rabe's search function that comes with it. but that is not keeping up anymore with the new wordpress 3.9 series.

Anyone recommend a good wp gallery plugin with image search for the frontend?
#website design #gallery #plugin #search #wanted #wordpress
  • Hi,

    My "quick&dirty-solution":
    1 Goto .../nextgen-gallery/nggfunctions.php (Version 1.9.13 !!!)
    2 Copy the complete
    function nggCreateGallery($picturelist, $galleryID = false, $template = '', $images = false) {
    ...
    return $out;
    }
    3 Goto .../nggSearch/nggSearch.php
    Paste the complete function nggCreateGallery at the end of the file just before ?>
    4 At the top of the function nggCreateGallery add after line "global $nggRewrite;" this code:
    if (class_exists("nggRewrite")) $nggRewrite=new nggRewrite();
    Some CSS-Hacks amd it works like before...


    delete the line:
    require_once (dirname (__FILE__) . '/lib/media-rss.php');


    Thanks,
    Mazdi
    • [1] reply
    • Haha! Tnx! Exactly what I searched for.
  • You can go with a custom plugin development, as per your specific requirements.

    Nuke
    • [1] reply
    • Thanks nuke! I was looking more for something off the shelf....

Next Topics on Trending Feed

  • 5

    Hi All! Anybody know of a wordpress plugin with search capability on the frontend? I am using nextgen gallery currently ver 1.9 that still has alex rabe's search function that comes with it. but that is not keeping up anymore with the new wordpress 3.9 series.