تخفیف هوشمند در ووکامرس ارائه تخفیف برای پنجمین سفارش مشتری
برای هر پنجمین سفارش در ووکامرس 10% تخفیف اعمال کنید – ترفند افزایش فروش با تخفیف هوشمند در ووکامرس
این کد برای کاربرانی که حداقل 5 سفارش انجام داده اند 10 درصد تخفیف در کل سبد ارائه می دهد و این تخفیف برای هر 5 سفارش مشتری تکرار می شود.
برای استفاده از این کد کافیست آن را به انتهای فایل فانکشن قالب اضافه کنید
function Rezvan_action_woocommerce_cart_calculate_fees($cart) {
if (is_admin() && !defined('DOING_AJAX')) return;
// Gets the current user's ID.
$user_id = get_current_user_id();
// User ID exists
if ($user_id >= 1) {
// Get the total orders by a customer.
$order_count = wc_get_customer_order_count($user_id);
// Starting from the 5th order
if ($order_count >= 5 && $order_count % 5 == 0) {
// Set the discount to 10%
$discount = $cart->cart_contents_total * 0.10; // 10% discount
// Only on cart page
if (is_cart()) {
// Message
$message = sprintf(__('Congratulations! You have a 10%% discount applied. This is your %sth order', 'woocommerce'), $order_count + 1);
// Check if a notice has already been added
if (!wc_has_notice($message)) {
wc_clear_notices();
wc_add_notice($message, 'notice');
}
}
// Set the discount (For discounts (negative fee) the taxes are always included)
$cart->add_fee(__('Discount', 'woocommerce') . " (10%)", -$discount);
}
}
}
add_action('woocommerce_cart_calculate_fees', 'Rezvan_action_woocommerce_cart_calculate_fees', 10, 1);