亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何為 WooCommerce 中單個產品頁面上顯示的接近銷售價格的折扣百分比添加 CSS 類

如何為 WooCommerce 中單個產品頁面上顯示的接近銷售價格的折扣百分比添加 CSS 類

PHP
喵喵時光機 2023-05-26 16:09:24
我使用“在 WC 3.0+ 的單個產品頁面中顯示接近銷售價格的折扣百分比”我使用此代碼在單個產品頁面上顯示價格后的銷售百分比。但我想自定義它 - 給它背景,填充等......所以我需要在該函數中包含 CSS 類名,以便能夠通過 CSS 對其進行自定義我只想將它添加到“?-percentage”(我不希望它既不應用于折扣價也不應用于正常價格)
查看完整描述

1 回答

?
www說

TA貢獻1775條經驗 獲得超8個贊

一些附加信息

  • HTML<del>標簽

  • HTML<ins>標簽

  • 如何 -添加課程

所以你得到

function woocommerce_custom_sales_price( $price, $regular_price, $sale_price ) {

? ? $percentage = round( ( $regular_price - $sale_price ) / $regular_price * 100 ).'%';

? ? $percentage_txt = '<span class="my-class">' . __('-', 'woocommerce' ) . $percentage . '</span>';

? ? $price = '<del>' . ( is_numeric( $regular_price ) ? wc_price( $regular_price ) : $regular_price ) . '</del>

? ? <ins>' . ( is_numeric( $sale_price ) ? wc_price( $sale_price ) . $percentage_txt : $sale_price . $percentage_txt ) . '</ins>';


? ? return $price;

}

add_filter( 'woocommerce_format_sale_price', 'woocommerce_custom_sales_price', 10, 3 );



查看完整回答
反對 回復 2023-05-26
  • 1 回答
  • 0 關注
  • 111 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號