我正在尝试为我的Woocommerce套件添加一种新的配送方式。
基本上,我试图根据用户角色对订单应用两种不同的运费。我使用统一费率作为其中之一,但需要定制一个。
我已经尝试使用shipping api创建一个新类,但似乎什么都没有显示。
<?php namespace MySite;
use WC_Shipping_Method;
function your_shipping_method_init() {
if ( ! class_exists( 'CustomShipping' ) ) {
class CustomShipping extends WC_Shipping_Method {
/**
* Constructor for your shipping class
*
* @access public
* @return void
*/
public function __construct() {
$this->id = 'your_shipping_method'; // Id for your shipping method. Should be uunique.
$this->method_title = __( 'Your Shipping Method' ); // Title shown in admin
$this->method_description = __( 'Description of your shipping method' ); // Description shown in admin
$this->enabled = "yes"; // This can be added as an setting but for this example its forced enabled
$this->title = "My Shipping Method"; // This can be added as an setting but for this example its forced.
$this->init();
}
function init() {
// Load the settings API
$this->init_form_fields(); // This is part of the settings API. Override the method to add your own settings
$this->init_settings(); // This is part of the settings API. Loads settings you previously init.
// Save settings in admin if you have any defined
add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
}
/**
* calculate_shipping function.
*
* @access public
* @param mixed $package
* @return void
*/
public function calculate_shipping( $package ) {
$rate = array(
'id' => $this->id,
'label' => $this->title,
'cost' => '10.99',
'calc_tax' => 'per_item'
);
// Register the rate
$this->add_rate( $rate );
}
}
}
add_action( 'woocommerce_shipping_init', 'your_shipping_method_init' );
function add_your_shipping_method( $methods ) {
$methods[] = 'CustomShipping';
return $methods;
}
add_filter( 'woocommerce_shipping_methods', 'add_your_shipping_method' );
}
我使用Composer加载我的类。
难道我不应该在WooCommerce运输设置中看到新选项吗?任何指导赞赏。
另一种方法是截取会话数据,只需更改那里的发货总额和税费。然而,这似乎不起作用。我在哪里可以找到更多关于发货信息来源的数据;何时何地呼叫?
代码中有两个问题。第一个是在附加到它的函数中添加woocommerce\u shipping\u init
的操作(因此它从未被调用),第二个是没有使用指定的名称空间名称空间MySite
。
如果您检查代码的缩进,第一个问题更容易看到,它都被包装在init函数中。
一旦WooCommerce试图加载类,第二个问题就会在日志中出现,错误如下所示,但由于第一个问题,它没有这样做。
PHP致命错误:在/wp-content/plugins/woocommerce/includes/Class-WC-Shipping中找不到类“WC\u-Your\u-Shipping\u-Method”。php在线136
PHP警告:call_user_func_array()期望参数1是一个有效的回调,函数'add_your_shipping_method'未找到或无效的函数名在 /wp-includes/plugin.php行213
我删除了下面的实现代码,但在一个开发站点上测试了它,它在WooCommerce设置中显示为一种发送方法。
/*
Plugin Name: WooCommerce Your Shipping Method
Description: Test shipping method
Version: 1.0
*/
namespace MySite;
use WC_Shipping_Method;
function your_shipping_method_init() {
if ( ! class_exists( 'WC_Your_Shipping_Method' ) ) {
class WC_Your_Shipping_Method extends WC_Shipping_Method {
// ... all your code for the implementation
}
}
} // <-- note that the function is closed before the add_action('woocommerce_shipping_init')
// note "MySite\" prepended to the attached function
add_action( 'woocommerce_shipping_init', 'MySite\your_shipping_method_init' );
// note "MySite\" prepended to the shipping method class name
function add_your_shipping_method( $methods ) {
$methods[] = 'MySite\WC_Your_Shipping_Method';
return $methods;
}
// note "MySite\" prepended to the attached function
add_filter( 'woocommerce_shipping_methods', 'MySite\add_your_shipping_method' );
我不确定您的代码的确切问题,但其他装运插件的做法如下,因此我可能会复制它们:
首先将您的方法放在另一个文件classes/class-wc中,以查看您的发货方法。php
if ( ! class_exists( 'WC_Your_Shipping_Method' ) ) {
class WC_Your_Shipping_Method extends WC_Shipping_Method {
// your class stuff truncated for brevity
}
}
然后在插件中包含来自某处的运输类文件:
function so_32509983_init() {
include_once( 'classes/class-wc-your-shipping-method.php' );
}
add_action( 'woocommerce_shipping_init', 'so_32509983_init' );
最后告诉WooCommerce将您的方法初始化为其活动方法之一:
function so_32509983_add_method( $methods ) {
$methods[] = 'WC_Your_Shipping_Method';
return $methods;
}
add_filter( 'woocommerce_shipping_methods', 'so_32509983_add_method' );