Hallo, ich möchte der Warenkorbtabelle eine Spalte hinzufügen, die den Rabattprozentsatz enthält Kannst du mir helfen?
Ich habe den Code für die Produktseite
////__________________________________________________________________________________//// //AGREGA EL PORCENTAJE DE DESCUENTO JUNTO AL PRECIO MAYORISTA // Nur für WooCommerce Version 3.0+ add_filter( 'woocommerce_format_sale_price', 'woocommerce_custom_sales_price', 10, 3 ); Funktion woocommerce_custom_sales_price( $price, $regular_price, $sale_price ) { $percentage = Round( ( $regulärer_Preis - $Verkaufspreis ) / $regulärer_Preis * 100 ).'%'; $percentage_txt = ' ' . __(' (-', 'woocommerce' ) . $percentage . __(' )', 'woocommerce' ); $price = '' (is_numeric( $regular_price) : $regular_price ) '' ) . $percentage_txt : $sale_price ) '' return $price; }
向购物车页面添加一列(其值取决于购物车商品)的最简单方法是覆盖
cart.php
模板。从 WooCommerce 插件中,复制woocommerce/cart/cart.php到
yourTheme/woocommerce/cart/
。如果您没有使用子主题,我建议您创建一个子主题并通过它覆盖模板,这样当您的主题更新时,您的模板更改就不会丢失。有关子主题的更多信息。从那里您可以查看
cart.php
,找到要插入折扣百分比标题的位置,并插入数据(在本例中为百分比折扣)。 p>要获取表头的标签,很简单。只需在表格的
thead
中添加标签的 HTML 即可。在我的示例中,可以在cart.php 第 51-59 行
中找到:要获取并显示折扣百分比,您必须浏览模板并找到它的正确位置。在我的示例中,我将其放在价格和数量之间,直接在折扣标题下方。在
cart.php
中,这将是第102行
。从那里,您只需编写 HTML 和 PHP 代码即可根据购物车商品的正常价格和促销价计算百分比:您现在可以看到,在购物车页面上,它显示了基于购物车商品的折扣百分比.在我的示例中,顶部产品正在促销,底部产品不促销。