xpay✦ Commerce
Directory
WooCommerce plugins
Product Bulk Editor for WooCommerce
Product Bulk Editor for WooCommerce
Bulk edit WooCommerce products quickly with inline editing, AJAX updates, undo/redo, and more — all from a simple, fast, and intuitive interface.
5.0
(1 ratings)Will this break my store?
What the WordPress.org registry says about keeping Product Bulk Editor for WooCommerce running.
Tested to 7.0.2
Tested against the WordPress branch in use today.2 months ago
At least 22.9 releases a year since launch. WordPress.org only lists versions still available for download, so the real number may be higher.7.3
Your host must be running at least this version.5.4
woocommerce
These must be installed and active first.1
A single maintainer. Worth knowing if the plugin is load-bearing for your store.Maintenance & trust
Scored on how Product Bulk Editor for WooCommerce is looked after — not on how many stores run it.
Maintenance
35 / 35WordPress compatibility
20 / 20Support responsiveness
Not enough dataMerchant satisfaction
10 / 15Listing transparency
7 / 10Ratings
5.0
1 ratingEffortlessly create and update nearly all WooCommerce product data in one intuitive interface with this powerful bulk product editor.
Save valuable time and resources by editing multiple products at once using AJAX-powered updates — no page reloads required. Whether you need to change prices, names, stock quantities, or categories, everything is right at your fingertips.
Create or update ATUM purchase orders if you have ATUM Inventory Management plugin installed
Key Features:
💡 Inline Editing – Update product fields directly in a spreadsheet-like layout.
🧩 Product Type Support – Works with simple, variable, external, and grouped products.
🔍 Product Filters – Quickly filter products to work only on what you need.
🔁 Undo & Redo – Instantly reverse or reapply changes with smart history tracking.
🔢 Math Operations – Perform calculations on numeric fields like prices and stock.
💬 String Operations – Modify text values with replace, prepend, or append actions.
🧩 Toggle Columns – Customize your view by showing or hiding only the columns you need.
↔️ Resizable Columns – Drag to resize columns for better visibility.
🎨 Visual Feedback – Instantly see which fields were modified with intuitive color cues.
🏷️ Manage Categories & Tags – Create or remove them without leaving the editor.
🧹 Trash, Delete & Duplicate – Perform common actions in bulk with ease.
🖨️ Print Product Tags – Easily print product tags in different sizes and formats
🛠️ Hooks for Developers – Extend and personalize the editor with your own custom columns or logic.
🫂 Integrations – ATUM Inventory Management and WooCommerce Cost of Goods
The plugin is designed for productivity and simplicity, making it the perfect companion for any store owner or manager who needs to manage large product catalogs effortlessly.
function mdspbe_product_attributes( $attributes ) {
$new_attributes = [
'print_section' => [
'id' => 'print_section',
'name' => esc_html( 'Print section', 'mds-pos' ),
'allow_edit' => true,
'is_meta' => true, // We tell the plugin is a meta column
'meta_key' => '_printing_section',
'type' => 'select',
'options' => get_option( 'mds_printing_sections', [] ),
'edit_options' => [ // This is for dropdown lists (html5 or tom-select) so options can be added or removed from the same plugin page
'add' => [
'callback' => 'mds_add_print_section', // Replace with the function that will create the option
'fields' => [ // Fields that you want to render and collect info in the form
'name' => [
'type' => 'input_text',
'name' => 'name',
'label' => esc_html__( 'Name', 'mds-pos' ),
'required' => true,
'sanitize' => 'sanitize_text_field',
],
]
],
'remove' => [ // Replace with the function that will remove the options
'callback' => 'mds_remove_print_sections',
]
],
'required' => true,
'allowed_types' => ['simple', 'variable'],
],
];
$attributes = array_merge( $attributes, $new_attributes );
return $attributes;
}
add_filter( ‘mdspbe_product_attributes’, ‘mdspbe_product_attributes’ );
Plugin details
Tags on WordPress.org
