如何更改 woocommerce 订阅产品页面上的“/月”
How to change the "/ month" on a woocommerce subscription product page
感谢您查看我的问题!我想知道是否有办法将我在 woocommerce 上的订阅产品页面上的“/月”更改为不同的内容。
这是默认情况下的片段:
Click for Snippet
因此,例如,默认情况下显示 "From: .99/month",我想将其更改为 "From: .99" 或 "From:.99 per whatever"。
这是一个更好的片段:Click for Snippet of Entire Product page
谢谢!
您可以使用过滤器 woocommerce_subscriptions_product_price_string_inclusions 删除订阅期和长度参数,这样它就不会显示订阅字符串。将此代码添加到您的 functions.php 文件中,它将只输出订阅产品的价格,不带周期或长度参数。
add_filter('woocommerce_subscriptions_product_price_string_inclusions', 'remove_subscription_inclusions', 10, 2);
function remove_subscription_inclusions( $include, $product ) {
$include['subscription_length'] = '';
$include['subscription_period'] = '';
return $include;
}
感谢您查看我的问题!我想知道是否有办法将我在 woocommerce 上的订阅产品页面上的“/月”更改为不同的内容。
这是默认情况下的片段: Click for Snippet
因此,例如,默认情况下显示 "From: .99/month",我想将其更改为 "From: .99" 或 "From:.99 per whatever"。
这是一个更好的片段:Click for Snippet of Entire Product page
谢谢!
您可以使用过滤器 woocommerce_subscriptions_product_price_string_inclusions 删除订阅期和长度参数,这样它就不会显示订阅字符串。将此代码添加到您的 functions.php 文件中,它将只输出订阅产品的价格,不带周期或长度参数。
add_filter('woocommerce_subscriptions_product_price_string_inclusions', 'remove_subscription_inclusions', 10, 2);
function remove_subscription_inclusions( $include, $product ) {
$include['subscription_length'] = '';
$include['subscription_period'] = '';
return $include;
}