P粉8934570262023-09-01 00:25:02
向购物车页面添加一列(其值取决于购物车商品)的最简单方法是覆盖 cart.php
模板。
从 WooCommerce 插件中,复制 <代码>woocommerce/cart/cart.php 到yourTheme/woocommerce/cart/
。如果您没有使用子主题,我建议您创建一个子主题并通过它覆盖模板,这样当您的主题更新时,您的模板更改就不会丢失。有关子主题的更多信息。
从那里您可以查看cart.php
,找到要插入折扣百分比标题的位置,并插入数据(在本例中为百分比折扣)。 p>
要获取表头的标签,很简单。只需在表格的 thead
中添加标签的 HTML 即可。在我的示例中,可以在 cart.php 第 51-59 行
中找到:
<thead> <tr> <th class="product-name" colspan="3"><?php esc_html_e( 'Product', 'woocommerce' ); ?></th> <th class="product-price"><?php esc_html_e( 'Price', 'woocommerce' ); ?></th> <th class="product-discount"><?php esc_html_e( 'Discount', 'woocommerce' ); ?></th> // added this line <th class="product-quantity"><?php esc_html_e( 'Quantity', 'woocommerce' ); ?></th> <th class="product-subtotal"><?php esc_html_e( 'Subtotal', 'woocommerce' ); ?></th> </tr> </thead>
要获取并显示折扣百分比,您必须浏览模板并找到它的正确位置。在我的示例中,我将其放在价格和数量之间,直接在折扣标题下方。在cart.php
中,这将是第102行
。从那里,您只需编写 HTML 和 PHP 代码即可根据购物车商品的正常价格和促销价计算百分比:
<td class="product-discount"> <?php if($_product->get_sale_price() != ''){ $reg_price = $_product->get_regular_price(); $sale_price = $_product->get_sale_price(); $percentage = ((($sale_price / $reg_price) - 1) * -1) * 100 . "%"; echo $percentage; } ?> </td>
您现在可以看到,在购物车页面上,它显示了基于购物车商品的折扣百分比. 在我的示例中,顶部产品正在促销,底部产品不促销。