خصم ذكي في ووكومرس تقديم خصم لطلب العميل الخامس
Erhalten Sie 10 % Rabatt für jede 5. Bestellung bei WooCommerce – der Trick, um den Umsatz mit intelligentem Rabatt bei WooCommerce zu steigern
يقدم هذا الكود خصم 10% على سلة التسوق بأكملها للمستخدمين الذين قاموا بعمل 5 طلبات على الأقل، ويتكرر هذا الخصم لكل 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);