Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Last active November 21, 2024 06:08
Show Gist options
  • Save webtoffee-git/85965ac1225beaa136330dc98736b555 to your computer and use it in GitHub Desktop.
Save webtoffee-git/85965ac1225beaa136330dc98736b555 to your computer and use it in GitHub Desktop.
Filter export data using custom taxonomy - Product import export plugin for WooCommerce by WebToffee (https://www.webtoffee.com/product/product-import-export-woocommerce/)
<?php // Please do not copy this line
add_filter('woocommerce_csv_product_export_args', 'wt_woocommerce_csv_product_export_args', 10, 2);
if (!function_exists('wt_woocommerce_csv_product_export_args')) {
function wt_woocommerce_csv_product_export_args($args, $form_data) {
$prod_brand = !empty($form_data['filter_form_data']['wt_iew_'.$GLOBALS['wt_custom_taxonomy_name']]) ? $form_data['filter_form_data']['wt_iew_'.$GLOBALS['wt_custom_taxonomy_name']] : array();
if(!empty($prod_brand)){
$args['filter_by_custom_taxonomy'] = $prod_brand;
}
return $args;
}
}
add_filter( 'woocommerce_product_data_store_cpt_get_products_query', 'wt_handle_custom_query_var', 10, 2 );
if(!function_exists('wt_handle_custom_query_var')){
function wt_handle_custom_query_var( $query, $query_vars ) {
if ( ! empty( $query_vars['filter_by_custom_taxonomy'] ) ) {
$query['tax_query'][] = array(
'taxonomy' => $GLOBALS['wt_custom_taxonomy_name'],
'field' => 'slug',
'terms' => $query_vars['filter_by_custom_taxonomy'],
);
}
// Register taxonomy dynamically for cron jobs if required
if(isset($_GET['wt_iew_url_cron'])) {
register_taxonomy('product_brand', 'product', [
'label' => __('product_brand', 'text-domain'),
'hierarchical' => true,
]);
}
return $query;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment