woocommerce - 更改类别中的产品的HTML

时间:2014-09-01 16:58:01

标签: php wordpress woocommerce

产品的HTML看起来像这样:

<li class="post-13 product type-product status-publish has-post-thumbnail first taxable shipping-taxable purchasable product-type-simple product-cat-printer instock">
    <a href="http://xxx">
        <img width="150" height="150" src="http://xx" class="attachment-shop_catalog wp-post-image" alt="" />
        <h3>abc</h3>
        <span class="price"><span class="amount">15.86&nbsp;&euro;</span></span>
    </a>
    <div class="gridlist-buttonwrap">
        <a href="xx?add-to-cart=13" rel="nofollow" data-product_id="13" data-product_sku="" class="button add_to_cart_button product_type_simple">Buy</a>
    </div>
    <hr />          
</li>

是否可以移动按钮旁边的价格?

<li class="post-13 product type-product status-publish has-post-thumbnail first taxable shipping-taxable purchasable product-type-simple product-cat-printer instock">
    <a href="http://xxx">
        <img width="150" height="150" src="http://xx" class="attachment-shop_catalog wp-post-image" alt="" />
        <h3>abc</h3>
    </a>
    <div class="abc">
        <a href="xx?add-to-cart=13" rel="nofollow" data-product_id="13" data-product_sku="" class="button add_to_cart_button product_type_simple">Buy</a>
        <span class="price"><span class="amount">15.86&nbsp;&euro;</span></span>
    </div>          
 </li>

我发现它的唯一方法是我应该编辑插件的核心,这是没用的,因为我会在更新后丢失所有更改。

编辑:例如this theme,他们有这样的结构:

<li>
    <a href="http://demo2.woothemes.com/sliding/shop/yellow-necklace/" style="width: 192px; height: 295px;">
        <img width="192" height="295" src="http://demo2.woothemes.com/sliding/files/2011/11/yellow-necklace-192x295.jpg" class="attachment-woo_sliding_slider wp-post-image" alt="yellow-necklace" />
        <div class="meta">
            <h3>Yellow Necklace</h3>
            <span class="slider-price"><span class="amount">&pound;19.00</span></span>
        </div>

    </a>

</li>

1 个答案:

答案 0 :(得分:1)

您可以覆盖模板文件,并在更新woocommerce时不会更新。

来自WooCommerce docs

  

或者,您可以通过升级安全方式编辑这些文件   覆盖。只需将其复制到主题中的目录中即可   / woocommerce,保持相同的文件结构。

     

示例:要覆盖管理员订单通知,请复制:   woocommerce / templates / emails / admin-new-order.php to   yourtheme / woocommerce /电子邮件/管理新-order.php