garyschmidt
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Bar showing “No result found”Problem was with header.php. Solved it. Thanks so much for your cooperation.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Bar showing “No result found”Now my search.php looks like this
<?php get_header(); ?>
<div class=”site-content wrap”>
<h1 class=”post-title”><?php aazon_get_string( ‘str_31’ ); ?></h1>
<main class=”content” id=”primary” role=”main”>
<?php if( have_posts()): while( have_posts()): the_post();
get_template_part( ‘content’);
endwhile;
aazon_blog_paging();
wp_reset_postdata(); ?><?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>
</main><!– #primary –>
<?php get_sidebar(); ?>
<div class=”clearfix”></div>
</div><?php get_footer(); ?>
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Bar showing “No result found”I’ve copied it direct from my theme editor. I think there is something wrong as I’m also seeing that here theme name is OneSocial theme. I’ll let you know. I didn’t see it earlier.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Bar showing “No result found”Yes, I do have complete index.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Bar showing “No result found”I’m really sorry for the delay. I didn’t get any email notification of your reply.
This is my site.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Bar showing “No result found”Nope. I’m not using buddypress.
My plugin list:
Ad Inserter
Akismet
All in one WP security
Autoptimize
Go Pricing
Redirection
Shortcodes Ultimate
Social Pug
Thrive Visual Editor
UpdraftPlus – Backup/Restore
W3 Total Cache
WP Smush
WP-Optimize
WPFront Scroll Top
Yoast SEOForum: Plugins
In reply to: [Relevanssi - A Better Search] Search Results page emptyI’m really sorry for the inconvenience. I’ve created a new thread as per your suggestion.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Results page emptyMy search.php looks like this. I’m getting “No results found” after putting a query in search box.
<?php get_header(); ?>
<div class=”site-content wrap” id=”reviews”>
<h1 class=”post-title”><?php aazon_get_string( ‘str_31’ ); ?></h1>
<main class=”content” id=”result-items” role=”main”>
<div class=”pagination”>
<div class=”total_post subtitle”><?php echo $wp_query->found_posts; ?> <?php aazon_get_string( ‘str_30’ ); ?></div>
<?php aazon_blog_paging(); ?>
<div class=”clearfix”></div>
</div><!– .pagination –>
<div class=”result-inner”>
<?php
if( have_posts()): while( have_posts()): the_post();
get_template_part( ‘content’, ‘review’ );
endwhile; wp_reset_postdata(); ?><?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>
</div>
<div class=”clearfix”></div>
<?php aazon_blog_paging(); ?>
<div class=”clearfix”></div>
</main><div class=”clearfix”></div>
</div><!– #reviews –>
<?php get_footer(); ?>