【发布时间】:2018-11-09 03:30:28
【问题描述】:
我想更改 WooCommerce 订阅中价格字符串的文本和顺序。现在它说:
“每月 1 日 35.00 美元,为期 11 个月,注册费 35.00 美元。”
我想让它说:
“第一个盒子 35.00 美元,然后每月 1 日 35.00 美元,持续 11 个月。”
我找到了可以用来将“注册费”更改为“第一个盒子”的代码:
/* WooCommerce Subscriptions Price String */
function wc_subscriptions_custom_price_string( $pricestring ) {
$newprice = str_replace( 'sign-up fee', 'for the first box', $pricestring );
return $newprice;
}
add_filter( 'woocommerce_subscriptions_product_price_string', 'wc_subscriptions_custom_price_string' );
add_filter( 'woocommerce_subscription_price_string', 'wc_subscriptions_custom_price_string' );
现在它说 “11 个月内每月 1 日 35.00 美元,第一个盒子 35.00 美元。”
如何更改订单?
【问题讨论】:
-
所有订阅的价格都一样吗?
-
目前只有一个订阅,但未来可能会更多。
标签: wordpress woocommerce woocommerce-subscriptions