dopod0901 2016-03-29 00:35
浏览 71
已采纳

如何在Woocommerce中嵌套产品并更改显示?

I'm trying to nest products within stores on Wordpress using Woocommerce. Essentially I'm attempting to have products, within stores, that are within my Woocommerce website. https://www.just-eat.co.uk/ is an example of a exactly what I'm trying to receive. This is an image of stores with products within them on Just-Eat.co.uk & [this][3]. So my question is how can I achieve this?

HTML (archive-products.php):

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

get_header( 'shop' ); ?>

<link rel="stylesheet" type="text/css" href="style.css"/>

<?php
    do_action( 'woocommerce_before_main_content' );
?>
    <?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
        <h1 class="page-title"><?php woocommerce_page_title(); ?></h1>
    <?php endif; ?>
    <?php
        do_action( 'woocommerce_archive_description' );
    ?>
    <?php if ( have_posts() ) : ?>
        <?php
            do_action( 'woocommerce_before_shop_loop' );
        ?>
        <?php woocommerce_product_loop_start(); ?>
            <?php woocommerce_product_subcategories(); ?>
            <?php while ( have_posts() ) : the_post(); ?>
                <?php wc_get_template_part( 'content', 'product' ); ?>
            <?php endwhile; // end of the loop. ?>
        <?php woocommerce_product_loop_end(); ?>
        <?php
            do_action( 'woocommerce_after_shop_loop' );
        ?>
    <?php elseif ( ! woocommerce_product_subcategories( array( 'before' => woocommerce_product_loop_start( false ), 'after' => woocommerce_product_loop_end( false ) ) ) ) : ?>
        <?php wc_get_template( 'loop/no-products-found.php' ); ?>
    <?php endif; ?>
<?php
    do_action( 'woocommerce_after_main_content' );
?>
<?php
    do_action( 'woocommerce_sidebar' );
?>
  • 写回答

1条回答 默认 最新

  • drgc9632 2016-03-31 00:27
    关注

    You can create 'Restaurants' as woocommerce categories and assign their respetive products into those categories.

    • In woocommerce > settings > products tab > display set the "Shop Page Display" options as "Show categories & subcategories". That way on the shop page only categories (Restaurants) will be displayed.
    • When clicked on any category (restaurant name) category page (Restaurant) page will open where its respective products will be listed.

    Also if you wish, you add tags to each product for another way of grouping.

    Hope this helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)