【发布时间】:2018-06-17 04:24:27
【问题描述】:
我有一个可以更改订阅详情文本的功能。
function wc_subscriptions_custom_price_string( $pricestring ) {
global $product;
$products_to_change = array( 2212 );
if ( in_array( $product->id, $products_to_change ) ) {
$pricestring = str_replace( 'on the 20th day of every 6th month', 'on the 20th November and 20th May', $pricestring );
}
return $pricestring;
}
add_filter( 'woocommerce_subscriptions_product_price_string', 'wc_subscriptions_custom_price_string' );
这很好用 - 但它不会更改购物车或迷你购物车中的文本 - 仍然显示每 6 个月第 20 天的默认文本。我如何也将它应用到购物车?
【问题讨论】:
标签: wordpress woocommerce woocommerce-subscriptions