php 更改WooCommerce订阅“更改付款方式”文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 更改WooCommerce订阅“更改付款方式”文本相关的知识,希望对你有一定的参考价值。
add_filter( 'woocommerce_change_payment_button_text', 'wooninja_change_payment_button_text' );
function wooninja_change_payment_button_text() {
return 'MY BUTTON TEXT';
}
add_filter( 'woocommerce_my_account_my_subscriptions_actions', 'wooninja_filter_subscriptions_actions', 99 );
function wooninja_filter_subscriptions_actions( $actions ) {
foreach ( $actions as $key => $value ) {
if ( isset( $actions[ $key ]['change_payment_method'] ) ) {
error_log( print_r( $value, true ) );
$actions[ $key ]['change_payment_method']['name'] = apply_filters( 'woocommerce_change_payment_button_text', __( 'Change Payment Method', 'woocommerce-subscriptions' ) );
}
}
return $actions;
}
以上是关于php 更改WooCommerce订阅“更改付款方式”文本的主要内容,如果未能解决你的问题,请参考以下文章
更改现有定期付款的 woocommerce 订阅率
php [请求报价] YITH WooCommerce请求报价和WooCommerce订阅
php [YITH WooCommerce订阅]与巴西的WooCommerce额外结账字段集成
php 检查产品是否是订阅(WooCommerce)
php [订阅]与巴西WooCommerce额外结帐字段的兼容性
Woocommerce 订阅中的订阅频率和价格变化挂钩