New installation: Search = 'Nothing Found'
-
Hi Mikko,
Thanks for what is obviously a great plugin for many people. I’m a bit of a webpage/site newbie and just can’t get this to work with my Suffusion theme. I’ve removed the query_posts reference, but am still getting no results found after deactivating/reactivating the plugin and reindexing the db (default settings with small adjustment to the weights.
Here is my default suffusion search.php:
<?php /** * Search results, can be set up to show either excerpts or full contents * * @package Suffusion * @subpackage Templates */ global $suffusion_unified_options, $suffusion, $suf_search_excerpt; $suffusion->set_content_layout($suf_search_excerpt); get_header(); suffusion_query_posts(); ?> <div id="main-col"> <?php suffusion_before_begin_content(); ?> <div id="content" class="hfeed"> <?php if ($suf_search_excerpt == 'list') { get_template_part('layouts/layout-list'); } else if ($suf_search_excerpt == 'tiles') { suffusion_after_begin_content(); get_template_part('layouts/layout-tiles'); } else if ($suf_search_excerpt == 'mosaic') { get_template_part('layouts/layout-mosaic'); } else { suffusion_after_begin_content(); get_template_part('layouts/layout-blog'); } ?> </div><!-- content --> </div><!-- main col --> <?php get_footer(); ?>
I’ve removed the “suffusion_query_posts();” as was the main suggestion, but it didn’t improve things. Any suggestions for a web newbie would be appreciated, thanks in advance!
site: laurashoe.com
John
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘New installation: Search = 'Nothing Found'’ is closed to new replies.