在产品页面上显示运费 - WooCommerce

时间:2017-11-21 09:37:14

标签: php wordpress woocommerce shipping woocommerce-subscriptions

我正在尝试在Wordpress上创建一个自定义页面,该页面在一个表单中显示2种订阅类型,每种形式有3种变体(每月,6个月,12个月)。每个变体都有一个单选按钮,当用户点击单选按钮时,我有一个实时更新的总价格。这部分正在运作。

但是现在,我想添加3个其他单选按钮来选择发货方式。 (当用户选择一个时,它也将实时更新总价格。)

我一直在寻找如何获得产品的运费但是没有任何效果。

任何人都知道:)?

1 个答案:

答案 0 :(得分:3)

这个问题太宽泛了。所以我可以部分回答,因为你应该自己做一些工作,然后再问更具体的问题......

  

现在,在产品页上设置发货数据的正确方法是使用 Ajax 更新数据,因为操作是女佣由客户在客户端(浏览器),避免'发布'并重新加载页面。但这应该是你的工作......

1)客户位置 (适用于发货区域)

您需要先获取客户所在地或送货区域。

然后,您需要更新WC()->sessionWC()->customer个对象中的客户所在国家/地区。这可以通过以下方式完成:

## Get the geolocated customer country code *(if enabled)*:
$country_code = WC()->customer->get_billing_country();
// or
// $country_code = WC()->customer->get_shipping_country();


## Set a new country code
$new_country_code = 'FR';

## 1. WC_session: set customer billing and shipping country

// Get the data
$customer_session = WC()->session->get( 'customer' );
// Change some data
$customer_session['country'] = $new_country_code; // Billing
$customer_session['shipping_country'] = $new_country_code; // Shipping
// Set the changed data
$customer_session = WC()->session->set( 'customer', $customer_session );

## 2. WC_Customer: set customer billing and shipping country

WC()->customer->set_billing_country( $new_country_code );
WC()->customer->set_shipping_country( $new_country_code );

2)送货方式 (按运费区划分,含费用)

在Woocommerce中,只有当客户将产品添加到购物车时,才能使用送货区的送货方式...

根据此答案代码:Display shipping methods to frontend as in the admin panel?我们可以制作一个自定义数组,用于通过运输区域来获取运输方法,包括成本和所需的一切。

以下代码更完整,包含运费方式费用:

// Initializing variable
$zones = $data = $classes_keys = array();

// Rest of the World zone
$zone                                              = new \WC_Shipping_Zone(0);
$zones[$zone->get_id()]                            = $zone->get_data();
$zones[$zone->get_id()]['formatted_zone_location'] = $zone->get_formatted_location();
$zones[$zone->get_id()]['shipping_methods']        = $zone->get_shipping_methods();

// Merging shipping zones
$shipping_zones = array_merge( $zones, WC_Shipping_Zones::get_zones() );

// Shipping Classes
$shipping           = new \WC_Shipping();
$shipping_classes   = $shipping->get_shipping_classes();

// The Shipping Classes for costs in "Flat rate" Shipping Method
foreach($shipping_classes as $shipping_class) {
    //
    $key_class_cost = 'class_cost_'.$shipping_class->term_id;

    // The shipping classes
    $classes_keys[$shipping_class->term_id] = array(
        'term_id' => $shipping_class->term_id,
        'name' => $shipping_class->name,
        'slug' => $shipping_class->slug,
        'count' => $shipping_class->count,
        'key_cost' => $key_class_cost
    );
}

// For 'No class" cost
$classes_keys[0] = array(
    'term_id' => '',
    'name' =>  'No shipping class',
    'slug' => 'no_class',
    'count' => '',
    'key_cost' => 'no_class_cost'
);

foreach ( $shipping_zones as $shipping_zone ) {
    $zone_id = $shipping_zone['id'];
    $zone_name = $zone_id == '0' ? __('Rest of the word', 'woocommerce') : $shipping_zone['zone_name'];
    $zone_locations = $shipping_zone['zone_locations']; // array
    $zone_location_name = $shipping_zone['formatted_zone_location'];

    // Set the data in an array:
    $data[$zone_id]= array(
        'zone_id'               => $zone_id,
        'zone_name'             => $zone_name,
        'zone_location_name'    => $zone_location_name,
        'zone_locations'        => $zone_locations,
        'shipping_methods'      => array()
    );

    foreach ( $shipping_zone['shipping_methods'] as $sm_obj ) {
        $method_id   = $sm_obj->id;
        $instance_id = $sm_obj->get_instance_id();
        $enabled = $sm_obj->is_enabled() ? true : 0;
        // Settings specific to each shipping method
        $instance_settings = $sm_obj->instance_settings;
        if( $enabled ){
            $data[$zone_id]['shipping_methods'][$instance_id] = array(
                '$method_id'    => $sm_obj->id,
                'instance_id'   => $instance_id,
                'rate_id'       => $sm_obj->get_rate_id(),
                'default_name'  => $sm_obj->get_method_title(),
                'custom_name'   => $sm_obj->get_title(),
            );

            if( $method_id == 'free_shipping' ){
                $data[$zone_id]['shipping_methods'][$instance_id]['requires'] = $instance_settings['requires'];
                $data[$zone_id]['shipping_methods'][$instance_id]['min_amount'] = $instance_settings['min_amount'];
            }
            if( $method_id == 'flat_rate' || $method_id == 'local_pickup' ){
                $data[$zone_id]['shipping_methods'][$instance_id]['tax_status'] = $instance_settings['tax_status'];
                $data[$zone_id]['shipping_methods'][$instance_id]['cost'] = $sm_obj->cost;
            }
            if( $method_id == 'flat_rate' ){
                $data[$zone_id]['shipping_methods'][$instance_id]['class_costs'] = $instance_settings['class_costs'];
                $data[$zone_id]['shipping_methods'][$instance_id]['calculation_type'] = $instance_settings['type'];
                $classes_keys[0]['cost'] = $instance_settings['no_class_cost'];
                foreach( $instance_settings as $key => $setting )
                    if ( strpos( $key, 'class_cost_') !== false ){
                        $class_id = str_replace('class_cost_', '', $key );
                        $classes_keys[$class_id]['cost'] = $setting;
                    }

                $data[$zone_id]['shipping_methods'][$instance_id]['classes_&_costs'] = $classes_keys;
            }
        }
    }
}

// Row output (for testing)
echo '<pre>'; print_r($data); echo '</pre>';
  

自定义送货方式
  现在,如果您使用自定义送货方式 (有时由第三方送货插件启用),您需要在代码中进行一些更改...

     

成本和税收计算
  您应该进行纳税计算,因为费用会按照在送货设置中设置显示...

3)产品页面

客户所在地:
您首先需要一个位置选择器(用于定义送货区)或根据Woocommerce地理位置设置位置。

送货方式
定义送货区后,您可以获得相应的送货方式和费率 (费用),在此产品页面上显示送货方式的单选按钮。

要实现这一点,您需要更改单个产品页面:

您需要使用以下代码(Ajax) 获取/设置/更新“chosen_shipping_methods”

获取选择的送货方式:

$chosen_shipping = WC()->session->get('chosen_shipping_methods')[0];

设置/更新选择的送货方式(通过Javascript / Ajax和admin-ajax.php):

// HERE the new method ID
$method_rate_id = array('free_shipping:10');

// Set/Update the Chosen Shipping method
WC()->session->set( 'chosen_shipping_methods', $method_rate_id );