Минимальная сумма заказа WooCommerce для продуктов в определенной категории - PullRequest
0 голосов
/ 21 мая 2019

Я хочу добавить комиссию в моем магазине woocommerce для заказов на определенную сумму (стоимость, а не количество).

Я использую " Динамическая минимальная сумма заказа WooCommerce на основе комиссии " код ответа, который отлично работает.

Сейчас я пытаюсь изменить эту функцию и применить ее только к элементам из определенной категории продуктов. По сути, я должен суммировать стоимость всех продуктов в корзине, которая соответствует определенной категории, и использовать это значение для расчета платы.

Как мне достичь этой цели?

1 Ответ

0 голосов
/ 21 мая 2019

Следующий пересмотренный код будет обрабатывать определенные определенные категории продуктов. Вам нужно будет определить:

  • Ваши конкретные категории продуктов в 1-й функции.
  • Минимальная сумма заказа во 2-й и 3-й функциях.

Код:

// Get the cart items subtotal amount from specific product categories
function get_specific_cart_items_total( $cart ) {
    $categories   = array('t-shirts'); // <=== Define your product categories
    $items_amount = 0; // Initializing

    // Loop through cart items
    foreach( $cart->get_cart() as $item ) {
        if( has_term( $categories, 'product_cat', $item['product_id'] ) ) {
            $items_amount += $item['line_subtotal'];
        }
    }
    return $items_amount;
}

// Add a custom fee (displaying a notice in cart page)
add_action( 'woocommerce_cart_calculate_fees', 'add_custom_surcharge', 10, 1 );
function add_custom_surcharge( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( did_action( 'woocommerce_cart_calculate_fees' ) >= 2 )
        return;

    $min_price     = 200; // The minimal cart amount

    $current_price = get_specific_cart_items_total( $cart );
    $custom_fee    = $min_price - $current_price;

    if ( $custom_fee > 0 ) {
        $cart->add_fee( __('Minimum Order Adjustment'), $custom_fee, true );

        // NOTICE ONLY IN CART PAGE
        if( is_cart() ){
            wc_print_notice( get_custom_fee_message( $min_price, $current_price ), 'error' );
        }
    }
}

// Displaying the notice on checkout page
add_action( 'woocommerce_before_checkout_form', 'custom_surcharge_message', 10 );
function custom_surcharge_message(  ) {
    $min_price     = 200; // The minimal cart amount

    $cart          = WC()->cart;
    $current_price = get_specific_cart_items_total( $cart );
    $custom_fee    = $min_price - $current_price;

    // NOTICE ONLY IN CHECKOUT PAGE
    if ( $custom_fee > 0 ) {
        wc_print_notice( get_custom_fee_message( $min_price, $current_price ), 'error' );
    }
}

// The fee notice message
function get_custom_fee_message( $min_price, $current_price ) {
    return sprintf(
        __('We have a minimum %s per order from specific categories. As your current order is only %s, an additional fee will be applied.', 'woocommerce'),
        wc_price( $min_price ),
        wc_price( $current_price )
    );
}

Код помещается в файл functions.php вашей активной дочерней темы (или активной темы) . Проверено и работает.


Опция: Для обработки родительских категорий продуктов также добавьте следующую дополнительную функцию:

// Custom conditional function (like has_term()) that handle parent product categories too
function has_product_categories( $categories, $product_id = 0 ) {
     // Initializing
    $parent_term_ids = $categories_ids = array();
    $taxonomy        = 'product_cat';

    if( is_string( $categories ) ) {
        $categories = (array) $categories;
    }

    $product_id = $product_id > 0 ? $product_id : get_the_id();

    // Convert categories term names and slugs to categories term ids
    foreach ( $categories as $category ){
        if( is_numeric( $category ) ) {
            $categories_ids[] = (int) $category;
        } elseif ( term_exists( sanitize_title( $category ), $taxonomy ) ) {
            $categories_ids[] = get_term_by( 'slug', sanitize_title( $category ), $taxonomy )->term_id;
        }
    }

    // Loop through the current product category terms to get only parent main category term
    foreach( get_the_terms( $product_id, $taxonomy ) as $term ){
        if( $term->parent > 0 ){
            $parent_term_ids[] = $term->parent; // Set the parent product category
            $parent_term_ids[] = $term->term_id; // (and the child)
        } else {
            $parent_term_ids[] = $term->term_id; // It is the Main category term and we set it.
        }
    }
    return array_intersect( $categories_ids, array_unique($parent_term_ids) ) ? true : false;
}

И заменить в первой функции эту строку:

if( has_term( $categories, 'product_cat', $item['product_id'] ) ) {

этим:

if( has_product_categories( $categories, $item['product_id'] ) ) {
...