Woocommerce定制商店页面布局

时间:2019-08-16 06:32:54

标签: php wordpress woocommerce wordpress-theming hook-woocommerce


我已经按照我的要求修复了Woocommerce插件中的所有问题,但找不到任何解决方案。 Woocommerce默认商店页面产品循环代码是这样

<ul>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
</ul>

我希望它将此代码更改为此

<div class="row">
  <div class="col-md-4">
     // Product Loop Card here
  </div>
  <div class="col-md-4">
     // Product Loop Card here
  </div>
  <div class="col-md-4">
     // Product Loop Card here
  </div>
  <div class="col-md-4">
     // Product Loop Card here
  </div>
  // etc etc etc
</div>

出现问题的屏幕截图 enter image description here

哪个功能/过滤器/挂钩或自定义模板可以执行此操作?请帮助我

3 个答案:

答案 0 :(得分:0)

您必须更改名为

的文件
content-product.php

您可以在这里

wp-content\plugins\woocommerce\templates

答案 1 :(得分:0)

只需将以下模板覆盖为主题即可对其进行更改-

loop/loop-start.php->删除<ul>标记并用<div class="row products columns-<?php echo esc_attr( wc_get_loop_prop( 'columns' ) ); ?>">

替换

loop/loop-end.php->删除</ul>标记并用</div>

替换

content-product.php-> 1.删​​除<li <?php wc_product_class( '', $product ); ?>>标记,并用<div class="col-md-4">替换 2.删除</li>标记,并用</div>

替换

答案 2 :(得分:0)

您需要访问woocommerce / loop文件夹

里面有两个loop-strat和loop-end文件

删除ul,如果使用引导程序,则输入以下代码

<div class="container">
    <div class="row">

在循环结束文件中,您需要关闭div

</div>
</div>

现在在内容产品文件中,您将创建您的循环,我将在此处保留文件示例的一个。

<div class="col-md-3 col-sm-6" >

    <div class="product-grid6">
        <div class="product-image6">

            <?php do_action('woocommerce_before_shop_loop_item_title');?>
        </div>
        <div class="product-content">
            <h3 class="title"><?php do_action('woocommerce_shop_loop_item_title');?></h3>
            <div class="price">
                <span>          <?php do_action('woocommerce_after_shop_loop_item_title');?>
</span>
            </div>

        </div>
        <ul class="social">
            <li><a href="" data-tip="Quick View"><i class="fa fa-search"></i></a></li>
            <li><a href="" data-tip="Add to Wishlist"><i class="fa fa-shopping-bag"></i></a></li>
            <li><a href="" data-tip="Add to Cart"><i class="fa fa-shopping-cart"></i></a></li>
        </ul>
    </div>

</div>