标题很好地解释了这一点。我试图通过扩展类来添加一种新的运输方法(基于成本的运输)。以下是插件主体(其余部分在评论中,包含插件信息):
class WC_Cost_Based extends WC_Shipping_Method {
function __construct() {
$this->id = 'cost-based';
$this->method_title = __('Cost-Based', 'woocommerce');
}
function calculate_shipping() {
$rate = array(
'id' => $this->id,
'label' => $this->title,
'cost' => '10.99',
'calc_tax' => 'per_item'
);
// Register the rate
$this->add_rate( $rate );
}
}
function add_cost_based_method( $methods ) {
$methods[] = 'WC_Cost_Based';
return $methods;
}
add_filter('woocommerce_shipping_methods', 'add_cost_based_method');
文件保存在/基于wp内容/成本的
知道为什么会出现这个错误吗?
我在尝试遵循wooccommerce指令/教程时遇到了同样的问题。他们似乎遗漏了几件事。
首先,为了解决你的问题,我发现我需要在插件类的顶部包含woommerce.php。这将使新的运输类能够访问它需要扩展的WC_shipping_Method。可能有一种更优雅的方式,只包含从属类。对我来说,include看起来像这样:
include ('/woocommerce/woocommerce.php');
其次,我发现我还必须在__construct()方法中至少再设置两个属性。它们是:
$this->title = "YOUR TITLE"; // Displays on the main shipping page
$this->enabled = true;
第三,我还需要(至少):
function is_available( $package ) {
if ( $this->enabled == "no" ) return false;
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', true );
}
希望它能有所帮助!
Simon
导航到-https://github.com/woocommerce/woocommerce/blob/master/includes/abstracts/abstract-wc-shipping-method.php
复制php文件中的所有内容,并在文件-abstract-wc-shipping-method.php中替换-wp-content/plugins/woocommerce/includs/abstracts/