我已经安装了WooCommerce Subscription商业插件,并且每件事情都很好,就像定期付款一样。我想要的是在订阅时,在我的自定义表中更新该订阅。
即使每次续订用户订阅时,我都希望在我的自定义表格中更新金额。
答案 0 :(得分:-1)
我遇到了同样的麻烦,这个解决方案对我有用! 在functions.php文件的末尾添加此代码,该文件位于“wp-content / themes / your-theme-name /:”
/**
* Auto Complete all WooCommerce orders.
*/
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' );
function custom_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}
$order = wc_get_order( $order_id );
$order->update_status( 'completed' );
}