woocommerce订阅切换操作不起作用

问题描述 投票:0回答:1

根据woocommerce文档中的信息:https://docs.woocommerce.com/document/subscriptions/develop/action-reference/ 行动:woocommerce_subscription_status_changed, 订阅升级或降级时也应该触发 - switched, 但它仅适用于以下情况: active, on-hold, cancelled 这是我的示例代码:

add_action('woocommerce_subscription_status_changed', 'test', 10, 3);
function test( $subscription_id, $old_status, $new_status ) {
    global $woocommerce;
    $file_content = $subscription_id.' '.$old_status.' '.$new_status;
    $filename = '/tmp/test_file.txt';
    file_put_contents($filename, $file_content);
}

上面的代码有效,但是当订阅切换时,我的问题是为什么?

php wordpress woocommerce orders woocommerce-subscriptions
1个回答
0
投票

为此,您应该使用woocommerce_subscriptions_switch_completed动作

© www.soinside.com 2019 - 2024. All rights reserved.