Menu Close

WooCommerce: Allow CSV Product Export By Tag

default

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!

Unfortunately you can’t filter products by product tag before exporting them to CSV. Let’s find a little hack to do that!

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
 * @donate $9     https://businessbloomer.com/bloomer-armada/
 */

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;
}
View Source
Posted in WooCommerce Tips