-2
私はwoocommerceストアを持つワードプレスサイトを持っており、特定の製品のみを購入するときにユーザーを強制登録します。
どうすればいいですか?
ありがとうございましたWooCommerceで特定の製品を購入するときに強制登録
私はwoocommerceストアを持つワードプレスサイトを持っており、特定の製品のみを購入するときにユーザーを強制登録します。
どうすればいいですか?
ありがとうございましたWooCommerceで特定の製品を購入するときに強制登録
あなたのクエリのコードは次のとおりです。
add_action('woocommerce_after_checkout_validation' , 'restict_registration_for_some_products', 10, 2);
function restict_registration_for_some_products($data, $errors) {
if(isset($data['createaccount']) && !$data['createaccount']) {
$retricted_ids = get_resticted_product_ids();
if(isset($retricted_ids) && $retricted_ids != null) {
$cart_content = WC()->cart->get_cart_contents();
$cart_ids = wp_list_pluck($cart_content, 'product_id');
$cart_ids = array_values($cart_ids);
$common_ids = array_intersect($retricted_ids, $cart_ids);
if(isset($common_ids) && $common_ids != null) {
$errors->add('account_registration', __('You are not allowed to purchase these products without creating an account.', 'text-domain'));
}
}
}
}
function get_resticted_product_ids() {
//specific product ids
return array(110,96,70);
}
Thanxですが、特定の製品やカテゴリを購入する場合にのみユーザーにサインアップする必要があります。製品の登録を強制しない。 –
こんにちは、私は私の答えを編集した、私はこのコードをテストして、完璧に働いています。 –
プロダクトIDはどこに入力しますか? –