WooCommerce 自定义插件:WC_Customer 对象实例附近的错误
WooCommerce custom plugin: Error around WC_Customer Object instance
我构建了一个插件,但遇到以下问题:
WooCommerce 仪表板(在管理端)不会加载数据。它挂起并失败。我已经追踪到问题代码:
中的问题
if ( is_admin() ) {
//removed
} else if ( !$this->is_login_page() && !wp_doing_ajax() ) {
$public = new Public();
}
导致问题的是 public 副代码! is_admin 或 wp_doing_ajax 都没有阻止它发生。
在public这边,我打电话给
add_action( 'init', array('Dynamic_Rules', 'dynamic_rule_tax_exemption') );
在免税功能中,我特别有这段代码导致了问题:
$woocommerce = WC();
$user_country = $woocommerce->customer->get_billing_country();
$woocommerce->customer->set_is_vat_exempt(true);
所以我只能推测发生了什么,也许 WC() 以某种方式将所有内容发送到无限循环中,这就是仪表板不加载数据的原因。我不知道为什么 is_admin() 和 wp_doing_ajax() 不能阻止这种情况发生。
也许我在 init 上调用该函数是错误的,但我还能在哪里调用它?
感谢任何帮助
很难找出你的问题是什么......注意"your question should be updated to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem."
您可以尝试的可能是:
$customer = WC()->customer;
if( ! is_a( $customer, 'WC_Customer' ) {
global $current_user;
if( $current_user > 0 ) {
$customer = new WC_Customer( $current_user->ID );
}
}
if( is_a( $customer, 'WC_Customer' ) {
$billing_country = $customer->get_billing_country();
if( ! $customer->is_vat_exempt() ) {
$customer->set_is_vat_exempt( true );
}
} else {
// Some code to throw an error or debug trace
}
希望这能解决您的问题。如果不是,您需要以某种方式将 用户 ID 传递给您的代码。
可能有用:
我构建了一个插件,但遇到以下问题: WooCommerce 仪表板(在管理端)不会加载数据。它挂起并失败。我已经追踪到问题代码:
中的问题if ( is_admin() ) {
//removed
} else if ( !$this->is_login_page() && !wp_doing_ajax() ) {
$public = new Public();
}
导致问题的是 public 副代码! is_admin 或 wp_doing_ajax 都没有阻止它发生。
在public这边,我打电话给
add_action( 'init', array('Dynamic_Rules', 'dynamic_rule_tax_exemption') );
在免税功能中,我特别有这段代码导致了问题:
$woocommerce = WC();
$user_country = $woocommerce->customer->get_billing_country();
$woocommerce->customer->set_is_vat_exempt(true);
所以我只能推测发生了什么,也许 WC() 以某种方式将所有内容发送到无限循环中,这就是仪表板不加载数据的原因。我不知道为什么 is_admin() 和 wp_doing_ajax() 不能阻止这种情况发生。
也许我在 init 上调用该函数是错误的,但我还能在哪里调用它?
感谢任何帮助
很难找出你的问题是什么......注意"your question should be updated to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem."
您可以尝试的可能是:
$customer = WC()->customer;
if( ! is_a( $customer, 'WC_Customer' ) {
global $current_user;
if( $current_user > 0 ) {
$customer = new WC_Customer( $current_user->ID );
}
}
if( is_a( $customer, 'WC_Customer' ) {
$billing_country = $customer->get_billing_country();
if( ! $customer->is_vat_exempt() ) {
$customer->set_is_vat_exempt( true );
}
} else {
// Some code to throw an error or debug trace
}
希望这能解决您的问题。如果不是,您需要以某种方式将 用户 ID 传递给您的代码。
可能有用: