change the resualts page - on "no resualt" woocomerce page

时间:2017-04-21 07:33:40

标签: php wordpress search woocommerce

Can anyone guide me trow the files that need to update in order to get

no result found

on search redirect to other page or different text (like leading into fill form)?

I am using wp woocomerce and woof search plug in. I found on the search.php that gives me a hit.

        </div>
        <?php graphene_posts_nav(); ?>
    <?php else : ?>
        <?php get_template_part( 'loop', 'not-found' ); ?>
    <?php endif;
}

1 个答案:

答案 0 :(得分:0)

是的,您需要根据以下找到的帖子使用if else条件。

            <?php if ( have_posts() ) : ?>

                //display search template

            <?php else : ?>

               //display no results template

                <?php get_template_part( 'no-results', 'search' ); ?>

            <?php endif; ?>

在这种情况下,没有结果模板将是no-results-search.php