Forums Forums Search & Filter Pro Start to Finish Setup exactly like in Demo

Viewing 10 posts - 21 through 30 (of 30 total)
  • Anonymous
    #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
    #196630
    This reply has been marked as private.
    Anonymous
    #196641
    This reply has been marked as private.
    Trevor
    #196698
    This reply has been marked as private.
    Anonymous
    #196800
    This reply has been marked as private.
    Trevor
    #196898
    This reply has been marked as private.
    Anonymous
    #197011
    This reply has been marked as private.
    Trevor
    #197034
    This reply has been marked as private.
    Anonymous
    #197093
    This reply has been marked as private.
    Trevor
    #197174

    Hi 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.

Viewing 10 posts - 21 through 30 (of 30 total)