Skip to content

Instantly share code, notes, and snippets.

@wtmujeebu
Created January 10, 2022 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wtmujeebu/92915a0bc2aab72f49e885dbd206001a to your computer and use it in GitHub Desktop.
Save wtmujeebu/92915a0bc2aab72f49e885dbd206001a to your computer and use it in GitHub Desktop.
Export all language products with WPML - Product import export for WooCommerce plugin by WebToffee
<?php // Please do not copy this line
add_filter('woocommerce_csv_product_export_args', 'wt_woocommerce_csv_product_export_args', 10, 1);
function wt_woocommerce_csv_product_export_args($args) {
$args['suppress_filters'] = true;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment