rdavey
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Strange link behaviorIt actually was within content-search.php. This had been discovered yesterday afternoon and I wanted to update you then, but they were doing maintenance. Thank you for your help and it seems to be working great now!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Strange link behaviorI tried using the support form mentioned on the page, but for some reason it didn’t show up for me even when logged in.
Anyway, here are the contents of loop-search.php from the parent theme:
<?php /** * Loop - Search * * This is the loop logic used on the search results screen. * * @package WooFramework * @subpackage Template */ global $more; $more = 0; woo_loop_before(); if (have_posts()) { $count = 0; $title_before = '<span class="archive_header">'; $title_after = '</span>'; echo $title_before . sprintf( __( 'Search results for "%s"', 'woothemes' ), get_search_query() ) . $title_after; ?> <div class="fix"></div> <?php while (have_posts()) { the_post(); $count++; if (get_option('woo_woo_tumblog_switch') == 'true') { $is_tumblog = woo_tumblog_test(); } else { $is_tumblog = false; } woo_get_template_part( 'content', 'search' ); } // End WHILE Loop } else { get_template_part( 'content', 'noposts' ); } // End IF Statement woo_loop_after(); woo_pagenav(); ?>Thanks again for any help!
Viewing 2 replies - 1 through 2 (of 2 total)