Ok, this is a little hacky and pretty manual, but it happened to me in the past that the inbuilt WooCommerce CSV product export was just not enough.
In other words, the default product export that you can find by clicking the “Export” button on the “Products” WordPress Dashboard screen, gives you the option to export all products to a CSV. You can also refine the list by product type and product category, so that you can export specific products only.
What’s missing there is a “product tag” filter, so this workaround will let you do just that – define a product tag slug in the snippet below, and your export list will be automatically filtered by that.
Of course, you could find a dynamic way of doing that, but for now we’ll keep this manual and hardcoded into the PHP function. Enjoy!
PHP Snippet: Filter CSV Product Export By Product Tag @ WordPress Dashboard
/**
* @snippet Filter by Tag @ WooCommerce Product Export
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 7
* @community https://businessbloomer.com/club/
*/
add_filter( 'woocommerce_product_export_product_query_args', 'bbloomer_add_search_term_to_woocommerce_export' );
function bbloomer_add_search_term_to_woocommerce_export( $args ) {
$args['tag'] = array( 'soft', 'tall' );
return $args;
}
Hi I have inserted the code suggested via code snippets plugin but nothing is changing – I still can’t filter by tag. Any idea why?
Thank you
Alex
Did you put the correct tag slugs inside the array?
Does the WooCommerce plugin offer any built-in features or extensions specifically designed for importing CSV product data based on tags?
For importing, they only need a matching SKU. So nothing is stopping you by creating a CSV file with products of the same tag, and importing them into WooCommerce. Does that make sense?