WooCommerce: назначить члена в зону доставки - PullRequest
0 голосов
/ 25 февраля 2019

есть ли способ назначить зону доставки участнику?

Я хочу сделать это, потому что я использую WooCommerce для сайта доставки еды, и мне нужно отправить электронное письмо в ближайший Ресторан, когда кто-то делает заказ

Я думал о добавлении поля электронной почтыв таблице зон доставки, как показано ниже (извините, моя админ-панель на французском языке)

shipping zone

Любая идея сделать это?

1 Ответ

0 голосов
/ 25 февраля 2019

Обновление (2019) - вы должны подумать, что по-другому, используя woocommerce_email_recipient_new_order для добавления определенных получателей электронной почты в зависимости от зоны доставки:

add_filter( 'woocommerce_email_recipient_new_order', 'custom_email_recipient_new_order', 10, 2 );
function custom_email_recipient_new_order( $recipient, $order ) {
    // Avoiding backend displayed error in Woocommerce email settings
    if ( ! is_a( $order, 'WC_Order' ) ) 
        return $recipient;

    // Get the shipping country and postcode
    $country_code = $order->get_shipping_country();
    $postcode     = $order->get_shipping_postcode();

    // Get All Zone IDs
    $zone_ids    = array_keys( array('') + WC_Shipping_Zones::get_zones() );

    // Loop through Zone IDs
    foreach ( $zone_ids as $zone_id ) {
        // Get the shipping Zone object
        $shipping_zone = new WC_Shipping_Zone($zone_id);

        // Loop through Zone locations
        foreach ( $shipping_zone->get_zone_locations() as $location ){
            if ( ( $location->type === 'postcode' && $location->code === $postcode ) 
            || ( $location->type === 'country' && $location->code === $country_code ) ) {
                $the_zone_id   = $zone_id;
                $the_zone_name = $shipping_zone->get_zone_name(); // (You can use the the zone name too)
                break;
            } 
        }
        if($found) break;
    }

    if( $the_zone_id == 0 ) {
        $recipient .= ',' . 'james.collins@gmail.com';
    } elseif( $the_zone_id == 2 ) {
        $recipient .= ',' . 'jean.dubreuil@gmail.com';
    } elseif( $the_zone_id == 3 ) {
        $recipient .= ',' . 'joel.chalamousse@gmail.com';
    } else {
        $recipient .= ',' . 'isabelle.frottin@gmail.com';
    }

    return $recipient;
}

Код входит в файл function.phpвашей активной детской темы (или активной темы).Должно работать.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...