我有一个功能可以更改订阅详细信息的文本。
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 天的默认文本。我如何也将其应用于购物车?