Mô tả
This “WC Multiple Cart Items Delete” plugin can be used to delete cart items in bulk on cart page using checkbox.
Cài đặt
Please check following steps for installation.
-
Add plugin to the /wp-content/plugins/ directory
-
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’.
-
Activate the plugin from backend plugins list.
Hỏi đáp
- 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;
}
Đánh giá
Không có đánh giá nào cho plugin này.
Người đóng góp & Lập trình viên
“WC Multiple Cart Items Delete” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.
Những người đóng gópDịch “WC Multiple Cart Items Delete” sang ngôn ngữ của bạn.
Muốn tham gia phát triển?
Duyệt code, check out SVN repository, hoặc theo dõi nhật ký phát triển qua RSS.
Nhật ký thay đổi
1.0.0
- Initial Release