問題:
販売者は、特定の商品の不正購入を防止するという共通の課題に直面しています。製品。この場合、顧客は製品「c」、「d」、および「e」にアクセスするには、製品「a」または「b」を以前に購入したことを証明する必要があります。
解決策:
この包括的なガイドでは、制限された製品へのアクセスを有効にする前に、顧客が前提条件の製品を購入したかどうかを判断するカスタマイズされた機能を備えています。 items.
function has_bought_items() { $bought = false; // Replace the numbers with your specific target product IDs $prod_arr = array( '21', '67' ); // Gather all customer orders $customer_orders = get_posts( array( 'numberposts' => -1, 'meta_key' => '_customer_user', 'meta_value' => get_current_user_id(), 'post_type' => 'shop_order', // WooCommerce orders post type 'post_status' => 'wc-completed' // Only orders with "completed" status ) ); // Process each customer order foreach ( $customer_orders as $customer_order ) { // Handle WooCommerce version compatibility $order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id; $order = wc_get_order( $customer_order ); // Iterate through products bought in the order foreach ($order->get_items() as $item) { // Product ID retrieval based on WooCommerce version if ( version_compare( WC_VERSION, '3.0', '<' ) ) $product_id = $item['product_id']; else $product_id = $item->get_product_id(); // Condition: Check if required product ID exists in the array of purchased products if ( in_array( $product_id, $prod_arr ) ) $bought = true; } } // Return true if the specific products have been purchased by the customer return $bought; }
使用法:
次のような商品のカートに追加ボタンを操作する関数を WooCommerce テンプレートに実装します。
たとえば、ショップ ページの [カートに追加] ボタン テンプレート (loop/add) -to-cart.php):
// Replace numbers with restricted product IDs $restricted_products = array( '20', '32', '75' ); // WooCommerce compatibility adjustment $product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id; // Restricted product, inactive add-to-cart button if ( !has_bought_items() && in_array( $product_id, $restricted_products ) ) { // Display an inactive add-to-cart button with a custom message // Non-restricted product or allowed product after specific purchase } else { // Regular add-to-cart button code }
この例では、顧客が証明するまで、特定の製品の「カートに追加」ボタンを動的に無効にします。必要なアイテムは事前にご購入ください。
以上が顧客に以前の購入の証拠を要求することで、WooCommerce での特定の製品の不正購入を防ぐにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。