该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

WC Multiple Cart Items Delete

描述

This “WC Multiple Cart Items Delete” plugin can be used to delete cart items in bulk on cart page using checkbox.

安装

Please check following steps for installation.

  1. Add plugin to the /wp-content/plugins/ directory

  2. Check first Woocommerce plugin is activated or not from backend plugin list. If it’s not activated then active it otherwise it will show error like ‘Please activate WooCommerce plugin first’.

  3. Activate the plugin from backend plugins list.

常见问题

How can i change “Delete Cart Items” button text?

To change button text , you need to add filter in functions.php file of your activated theme/child theme.

add_filter(‘delete_items_text’,’delete_items_text_callback’);
function delete_items_text_callback($string){
$string = ‘Delete Items’;
return $string;
}

评价

此插件暂无评价。

贡献者及开发者

“WC Multiple Cart Items Delete” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

更新日志

1.0.0

  • Initial Release