【问题标题】:How to change the "/ month" on a woocommerce subscription product page如何更改 woocommerce 订阅产品页面上的“/月”
【发布时间】:2018-04-14 02:22:00
【问题描述】:

感谢您查看我的问题!我想知道是否有办法将 woocommerce 订阅产品页面上的“/月”更改为不同的内容。

这是默认情况下的 sn-p: Click for Snippet

因此,例如,默认情况下它显示“起价:34.99 美元/月”,我想将其更改为“起价:34.99 美元”或“起价:34.99 美元/月”。

这里有一个更好的 sn-p:Click for Snippet of Entire Product page

谢谢!

【问题讨论】:

    标签: wordpress woocommerce woocommerce-subscriptions


    【解决方案1】:

    您可以使用过滤器 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;
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-06-18
      • 2021-01-25
      • 1970-01-01
      • 2015-01-04
      • 1970-01-01
      • 2017-12-03
      • 2019-07-29
      • 1970-01-01
      相关资源
      最近更新 更多