我正在尝试使用Vivawallet定期付款来处理woocommerce订阅。
标准钩子调用看起来像这样
add_action('woocommerce_scheduled_subscription_payment_'. $this->id , array($this, 'scheduled_subscription_payment'));
function scheduled_subscription_payment( $amount_to_charge, $order ) {
$this->process_subscription_payment($order, $amount_to_charge);
}
但是当我通过“计划”操作中的“运行”按钮启动付款过程时,该功能未执行