尝试创建货运插件时Woocommerce中的错误

时间:2019-07-11 16:20:55

标签: php wordpress woocommerce

我正在尝试在Woocommerce中开发自定义运费计算插件,但是我无法返回客户输入的zip来激活我的公式。在此示例中,我只测试了一个基本公式,但它导致错误“致命错误:... \ wp-content \ plugins \ woocommerce \ includes \ class-中未定义方法Test_Shipping_Br :: get_items_needing_shipping()的调用添加产品后转到购物车,则在第1316行上找到wc-cart.php。

我需要获取客户键入的邮政编码以及购物车中的包裹信息(数量,重量,高度,宽度,长度),然后根据此信息,我将制定一个特定的公式。我刚开始尝试获取zip的时候就写了一个基本公式,但是它已经引起了我上面报告的错误。

<?php
/*
Plugin Name: Test Shipping
Plugin URI: 
Description: 
Version: 1.0.0
Author: Wendell Christian
Author URI: 
*/

if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {

function Test_Shipping_Br_init() {
    if ( ! class_exists( 'Test_Shipping_Br' ) ) {
        class Test_Shipping_Br extends WC_Shipping_Method {

            public function __construct() {
                $this->id                 = 'Test_Shipping_Br'; 
                $this->method_title       = __( 'Test Shipping Brazil' );  
                $this->method_description = __( '' ); 

                $this->enabled            = "yes"; 
                $this->title              = "Test Shipping Brazil"; 

                $this->init();
            }

            function init() {
                $this->init_form_fields();
                $this->init_settings();

                add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
            }


            public function calculate_shipping( $package ) {

                $array = WC_Cart::get_shipping_packages();                  
                $postcode = $array[0]['destination']['postcode'];


                if ($postcode >= 75960000 && $postcode <= 75969999)
                {
                    $cost = 17;

                }


                $rate = array(
                    'id' => $this->id,
                    'label' => $this->title,
                    'cost' => round($cost,2),
                    'calc_tax' => 'per_order'
                );

                $this->add_rate( $rate );
            }
        }
    }
}

add_action( 'woocommerce_shipping_init', 'Test_Shipping_Br_init' );

function add_Test_Shipping_Br( $methods ) {
    $methods[] = 'Test_Shipping_Br';
    return $methods;
}

add_filter( 'woocommerce_shipping_methods', 'add_Test_Shipping_Br' );
}

1 个答案:

答案 0 :(得分:0)

您的插件示例中似乎缺少get_items_needing_shipping。

这也是错误所隐含的含义。

该功能存在吗?