我需要一个更好的方法来做到这一点。
目前我已将代码直接添加到class-wc-subscriptions-product.php文件中的get_price_string函数中,因此在设置免费试用版时,我可以更改要添加到价格字符串中的文本。
这当然远非完美。
那么,有没有人知道我需要添加到主题文件夹中的functions.php文件中的钩子才能做同样的事情?
答案 0 :(得分:2)
这是我网站的一个非常简单的版本。我需要说“每个季节”而不是“每3个月”。最简单的方法是创建一个插件:
<?php
/**
* Plugin Name: My Subscription Price Text
* Description: Make it say "Every Season" instead of "Every 3 Months"
* Author: green coder
* Author URI:
* Version: 1.0
* License: GPL v2
*/
function my_subs_price_string( $pricestring ) {
$newprice = str_replace( 'every 3 months', 'per season', $pricestring );
return $newprice;
}
add_filter( 'woocommerce_subscriptions_product_price_string', 'my_subs_price_string' );
add_filter( 'woocommerce_subscription_price_string', 'my_subs_price_string' );
答案 1 :(得分:1)
好老问题,但我最近需要这样做。我不想依赖字符串替换,所以这就是我做的方式(可以根据您的需要进行调整 - 关键是要查看$product
中可用的属性):
add_filter( 'woocommerce_subscriptions_product_price_string', 'my_subs_price_string', 10, 3 );
function my_subs_price_string( $subscription_string, $product, $include ) {
/****
var_dump($product); Various variables are available to us
****/
return 'An initial easy payment of ' . wc_price( $product->subscription_sign_up_fee ) .
', a ' . $product->subscription_trial_length . ' ' . $product->subscription_trial_period .
' trial of the product, then an outright purchase of ' . wc_price( $product->subscription_price );
}
答案 2 :(得分:0)
在/public_html/wp-content/plugins/woocommerce-subscriptions/includes/class-wc-subscriptions-product.php
找到get_price_string(...)
在此处调整布尔值:
$include = wp_parse_args( $include, array(
'tax_calculation' => get_option( 'woocommerce_tax_display_shop' ),
'subscription_price' => true,
'subscription_period' => true,
'subscription_length' => true,
'sign_up_fee' => true,
'trial_length' => true,
)
);