WooCommerce search result template

前端 未结 2 401
暗喜
暗喜 2020-12-19 06:40

I am working on a WooCommerce WordPress site. I have added WooCommerce search feature for product. But both main shop page and search result page have same template archive-

相关标签:
2条回答
  • 2020-12-19 06:46

    As @arun said in the comments copy the archive-product.php and paste in the to the woocommerce folder inside your theme (if you don't have this folder, create one)

    Open the file and split the content inside that file using a php if statement

    if ( is_search() ) {
        //put your search results markup here (you can copy some code from archive-product.php file and also from content-product.php to create a standard markup
    } else {
        // here goes the content that is already in that file (archive-product.php) 
    }
    

    Just make sure this line of code always stays at the top of the file:

    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    
    0 讨论(0)
  • 2020-12-19 06:54

    Based on @Capital Themes answer - you can inverse the function and add code for the non search form categories:

    <?php   if (! is_search() ) {
    //Added code for non search form
    } else {
    // if want something only for search
    }   ?>
    
    0 讨论(0)
提交回复
热议问题