Forums › Forums › Search & Filter Pro › Ajax is not working
- This topic has 3 replies, 2 voices, and was last updated 8 years, 11 months ago by Anonymous.
-
Anonymous(Private) December 8, 2015 at 3:30 pm #31718
Hi,
I am pretty sure that Ajax is not working on my site at http://www.buybettermall.com/apparel . I am using the search and filter pro template which I modified to have three columns. Is it possible that my modifications wrecked something, or is it because I am using the wp_pagenavi plugin? Also when the page is loading (which it does every search right now) the multi-select filter boxes get temporarily messed up. Here is how I modified the template:if ( $query->have_posts() )
{
?><div class=”pagination”>
Found <?php echo $query->found_posts; ?> Results
<?phpif (function_exists(‘wp_pagenavi’))
{
echo “<br />”;
wp_pagenavi( array( ‘query’ => $query ) );
}
?>
</div><?php $i = 0; ?>
<?php
while ($query->have_posts())
{
$query->the_post();?>
<?php
if($i == 0) {
echo ‘<div class=”ng-row”>’;
}
?><div class=”half_bbm”>
<div id=”myfirstid”><h3>“><?php the_title(); ?></h3>
“><?php
if ( has_post_thumbnail() ) {
echo ‘<p>’;
the_post_thumbnail(“small”);
echo ‘</p>’;
}
?>
<p><?php the_excerpt(); ?><br /><p></div>
</div><?php
$i++;
if($i == 3) {
$i = 0;
echo ‘</div>’;
}
?><?php
}
?><?php
if($i > 0) {
echo ‘</div>’;
}
?>After this I didn’t change anything. Any help you can give would be appreciated. Thanks
GregRoss Moderator(Private) December 8, 2015 at 7:57 pm #31748In the Display Results tab, what Display Method are you using?
-
AuthorPosts