Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Gianluca

Forum Replies Created

Viewing 6 posts - 11 through 16 (of 16 total)
  • Gianluca in reply to:
    Custom results template
    #10021
    This reply has been marked as private.
    Gianluca in reply to:
    Custom results template
    #9950
    This reply has been marked as private.
    Gianluca in reply to:
    Custom results template
    #9927
    This reply has been marked as private.
    Gianluca in reply to:
    Custom results template
    #9880
    This reply has been marked as private.
    Gianluca in reply to:
    Custom results template
    #9439

    I tried also this way. Create a file called archive-movie.php (where “movie” is my CPT) and entered this code (no get_posts loop):

    <div id="content">
      
    <?php 
    if(have_posts()) : while(have_posts()) : the_post();
    	echo '<b>'.the_title().'</b>';
    	echo '<div class="my-styles">';
    	the_content();
    	echo '</div>';
    endwhile; endif;
    ?>
      
    </div>

    On the frontend, at the url http://localhost/mysite/movie I see all the results. When change the filter, Ajax starts (gives opacity on the results) but when finished the results are the same as before. It doesn’t filter…

    Gianluca in reply to:
    Custom results template
    #9436

    Could you tell me step by step what I have to do for get what I need? Thanks

Viewing 6 posts - 11 through 16 (of 16 total)