我一直在嘗試將 WooCommerce 產品的銷售價格僅更改為「會員免費」而不是 0。 我想將銷售價格更改為自訂文本,例如:
我在網路上搜尋並找到了做同樣事情的程式碼片段,但問題是它也改變了銷售價格和正常價格。
這是我在 Stack Overflow 上找到的程式碼:
function my_wc_custom_get_price_html( $price, $product ) { if ( $product->get_price() == 0 ) { if ( $product->is_on_sale() && $product->get_regular_price() ) { $regular_price = wc_get_price_to_display( $product, array( 'qty' => 1, 'price' => $product->get_regular_price() ) ); $price = wc_format_price_range( $regular_price, __( 'Free for members!', 'woocommerce' ) ); } else { $price = '<span class="amount">' . __( 'Free!', 'woocommerce' ) . '</span>'; } } return $price; } add_filter( 'woocommerce_get_price_html', 'my_wc_custom_get_price_html', 10, 2 );
問題是此程式碼也刪除了正常價格上的刪除線。這是我嘗試添加一些內聯 CSS 來添加刪除線時的結果:
我想要實現的是更改銷售價格,如下螢幕截圖所示:
當產品以 0(零)價格促銷時,請嘗試使用以下簡化代碼以自訂文字顯示帶刪除線的正常價格:
它應該按您的預期工作。