Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Bulk Publish All Woocommerce Draft Product

If you have 20,000 products in your draft product list, which will be very so difficult and
waste of time to published them one by one it will take almost more than 2month. Is there a
way to mark all 20,000 products as a draft without using plugin changing them to daft via
bulk edit?
Answer is yes.

What Product Information Is Allowed to Be Bulk Edited in


WooCommerce?

WooCommerce comes with its own built-in bulk editor. The following field options are
available:
 Product categories and sub-categories
 Comments (Allow or Do not allow)
 Status (Published, Private, Pending Review, or Draft)
 Product tags
 Product Data (Price, Sale Price, Weight, L/W/H, Shipping class, Visibility,
Featured, Stock status, and Sold individually)
You may notice additional options available depending on which theme and plugins are
active.

Common Reasons to Bulk Edit Products.


Here are the most common reasons to bulk edit products:
 Changing product categories
 Price increases and decreases
 Featured product status
 Adding / Removing Tags
 Shipping Classes
 Product Visibility
Whatever your reasons are for changing any of the above information on a selected list of
products, the bulk edit method is the fastest way to go on.
I know codecanyon have a bulk product editor plugin(paid), but I’m not sure if that's any
use. So, it will be better choice to do it directly without invest your money through database
editing and would be the easiest way on WordPress ecommerce.

Let’s start how to do it step by step.

1. Go to plugin
2. Add new
3. Install phpMyAdmin plugin.
Img
4. Go to wp_posts table
5. Insert query to published from draft (UPDATE wp_posts SET post_status = 'publish' WHERE
post_type = 'product' AND post_status = 'draft’)
6. Insert query to draft from published (UPDATE wp_posts SET post_status = 'publish' WHERE
post_type = 'product' AND post_status = 'draft’)
7. Closed database and visit to dashboard that’s it.
8.

You might also like