Forums › Forums › Search & Filter Pro › Start to Finish Setup exactly like in Demo
- This topic has 30 replies, 2 voices, and was last updated 6 years, 10 months ago by
Trevor.
-
Anonymous(Private) December 17, 2018 at 4:07 pm #196591
Hi Trevor,
For the life of me I still can’t get the pop up/lightbox to work. I think it’s because the links are linking to custom posts instead of directly to images, so the plugin isn’t recognizing them and adding the lightbox to those links. Do you have any other ideas? I could also just give you our wordpress password if you think it would be easier to login and take a look yourself.
Thanks so much!Trevor(Private) December 20, 2018 at 4:41 pm #197174Hi Ryan
I think this very much abridged results.php file is all you need:
<?php /** * Search & Filter Pro * * Sample Results Template * * @package Search_Filter * @author Ross Morsali * @link https://searchandfilter.com * @copyright 2018 Search & Filter * * Note: these templates are not full page templates, rather * just an encaspulation of the your results loop which should * be inserted in to other pages by using a shortcode - think * of it as a template part * * This template is an absolute base example showing you what * you can do, for more customisation see the WordPress docs * and using template tags - * * http://codex.wordpress.org/Template_Tags * */ if ( $query->have_posts() ) { while ($query->have_posts()) { $query->the_post(); if ( has_post_thumbnail() ) { ?> <div> <p><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail("small"); ?></a></p> </div> <hr /> <?php } } } else { echo "No Results Found"; } ?>It might cause you some CSS issues, I am not sure. However, much of the CSS you wrote to hide stuff would not be needed.
-
AuthorPosts