1
在WooCommerce,我想「航運估計」添加到我的送貨方法(它們都是扁平率型),所以它看起來是這樣的: 不同的自定義標籤添加到Woocommerce送貨方式
只有所有的估計日期不同...
我的問題是,我似乎無法定位特定的實例。我只能選擇整個方法(扁率),我檢查了我的方法實例ID的,因爲這些都是唯一的:
但只有當我把0
在PHP中切換方法的情況下工作。 2,3,4,5,7不起作用。
這裏是我的代碼:
function sv_shipping_method_estimate_label($label, $method) {
$label. = '<br /><small>';
switch ($method - > instance_id) {
case 0:
$label. = 'Est delivery: 2-400 days';
break;
}
$label. = '</small>';
return $label;
}
add_filter('woocommerce_cart_shipping_method_full_label', 'sv_shipping_method_estimate_label', 10, 2);
代碼明顯地導致了我所有的運輸方式都是一樣的估計。