• [ Moved to the Fixing WordPress sub-forum. ]

    So I’d love to get Relevanssi working on my site; I’m using the rehub theme. It seems that it’s probably the theme that is preventing it from displaying anything in the search results? If I mistype a word, it just shows the standard message “No products were found matching your selection.” Here is my search.php file. If anyone could help, that would be great.

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    <?php get_header(); ?>
    <?php $cursearch = get_search_query();?>
    <!-- CONTENT -->
    <div class="content">
    <div class="clearfix">
    <!-- Main Side -->
    <div class="main-side clearfix<?php if (rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_gridfull') : ?> full_width<?php endif ;?>">
    <div class="wpsm-title middle-size-title wpsm-cat-title"><h5><span><?php _e('Search Results', 'rehub_framework'); ?></span> <?php echo esc_html($cursearch); ?></h5></div>
    <?php if (rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_grid') : ?>
    <?php wp_enqueue_script('masonry'); wp_enqueue_script('imagesloaded'); wp_enqueue_script('masonry_init'); ?>
    <div class="masonry_grid_fullwidth two-col-gridhub">
    <?php elseif (rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_gridfull') : ?>
    <?php wp_enqueue_script('masonry'); wp_enqueue_script('imagesloaded'); wp_enqueue_script('masonry_init'); ?>
    <div class="masonry_grid_fullwidth three-col-gridhub">
    <?php endif ;?>
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    <?php if (rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_blog') : ?>
    <?php include(rh_locate_template('inc/parts/query_type2.php')); ?>
    <?php elseif (rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_list') : ?>
    <?php include(rh_locate_template('inc/parts/query_type1.php')); ?>
    <?php elseif (rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_grid' || rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_gridfull') : ?>
    <?php include(rh_locate_template('inc/parts/query_type3.php')); ?>
    <?php else : ?>
    <?php include(rh_locate_template('inc/parts/query_type1.php')); ?>
    <?php endif ;?>
    <?php endwhile; ?>
    <?php else : ?>
    <h5><?php _e('Sorry. No search results found', 'rehub_framework'); ?></h5>
    <?php endif; ?>
    <?php if (rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_grid' || rehub_option('rehub_framework_search_layout') == 'rehub_framework_archive_gridfull') : ?></div><?php endif ;?>
    <div class="clearfix"></div>
    <?php rehub_pagination(); ?>
    </div>
    <!-- /Main Side -->
    <?php if (rehub_option('rehub_framework_search_layout') != 'rehub_framework_archive_gridfull') : ?>
    <!-- Sidebar -->
    <?php get_sidebar(); ?>
    <!-- /Sidebar -->
    <?php endif ;?>
    </div>
    </div>
    <!-- /CONTENT -->
    <!-- FOOTER -->
    <?php get_footer(); ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    The developers and users of this plugin would be the best people to ask. You can reach them here:

    https://wordpress.org/support/plugin/relevanssi

    That doesn’t seem to be a problem, but you can check by switching to one of the default themes for a moment. Does the search work there?

    Do you get any results with any search term? Relevanssi doesn’t find results with mistyped words either, it’s not supposed to.

    Do you have a complete index? Have you set Relevanssi to index your product post type?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Relevanssi Not Working At All- Here is my search.php’ is closed to new replies.