Spaltenrabatt auf WooCommerce-Warenkorbtabelle hinzufügen
P粉807471604
P粉807471604 2023-08-31 11:32:05
0
1
421

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; }

P粉807471604
P粉807471604

Antworte allen (1)
P粉893457026

向购物车页面添加一列(其值取决于购物车商品)的最简单方法是覆盖cart.php模板。

从 WooCommerce 插件中,复制woocommerce/cart/cart.phpyourTheme/woocommerce/cart/。如果您没有使用子主题,我建议您创建一个子主题并通过它覆盖模板,这样当您的主题更新时,您的模板更改就不会丢失。有关子主题的更多信息。

从那里您可以查看cart.php,找到要插入折扣百分比标题的位置,并插入数据(在本例中为百分比折扣)。 p>

要获取表头的标签,很简单。只需在表格的thead中添加标签的 HTML 即可。在我的示例中,可以在cart.php 第 51-59 行中找到:

     // added this line    

要获取并显示折扣百分比,您必须浏览模板并找到它的正确位置。在我的示例中,我将其放在价格和数量之间,直接在折扣标题下方。在cart.php中,这将是第102行。从那里,您只需编写 HTML 和 PHP 代码即可根据购物车商品的正常价格和促销价计算百分比:

 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; } ?> 

您现在可以看到,在购物车页面上,它显示了基于购物车商品的折扣百分比.在我的示例中,顶部产品正在促销,底部产品不促销。

    Neueste Downloads
    Mehr>
    Web-Effekte
    Quellcode der Website
    Website-Materialien
    Frontend-Vorlage
    Über uns Haftungsausschluss Sitemap
    Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!