Created
January 10, 2022 12:22
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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