我曾与使用 Shipstation 插件的客户合作。更新到最新版本的 WooCommerce(2.2)后,插件停止工作,其 “设置” 下的选项卡无法单击。在顶部,一些下拉菜单被打破了。这是修复,希望 Shipstation 更新插件 asap 。

修复 1:在 WooCommerce 2.2 中使 Shipstation 选项卡可以点击

// Look for "woocommerce" and change it to "wc-settings" in the function below

function tab() {
	$class = 'nav-tab';
	if ( $this->current_tab == 'woo_ss' ) $class .= ' nav-tab-active';
	echo '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=woo_ss' ) . '" class="' . $class . '">ShipStation</a>';
}

修复 2:修复 WooCommerce 2.2 中的 Shipstation“导入” 下拉菜单

// Look for "options > array" and instead of the current value enter order statuses manually

'name' => __( 'Order Status to move it to when the shipnotify action is presented', $this->domain ),
		'desc' => '',
		'tip' => '',
		'id' => 'woo_ss_import_status',
		'css' => '',
		'std' => '',
		'type' => 'select',
		'options' => array ( "Pending" => "Pending", "Processing" => "Processing", "Cancelled" => "Cancelled", "Refunded" => "Refunded", "Failed" => "Failed" )


可以在哪里添加此代码?

您可以将 PHP 代码片段放置在主题或子主题的 functions.php 文件的底部(如果是 CSS 代码,请添加到主题的 style.css 文件底部),修改之前建议先备份原始文件,若出现错误请先删除此代码。


这段代码是否正常可用?

或者是您有更好的解决方案想要分享?请到薇晓朵 WooCommerce 中文论坛留言告知,我们希望可以帮到更多国内的 WooCommerce 用户也希望您的参与。


需要关于 WooCommerce 的帮助?

请观看我们提供的免费视频教程或到薇晓朵 WooCommerce 中文论坛提问,会有专业技术团队提供相关帮助。