Advertisement
mbcreation

Quick Export : remove product informations

Jun 23rd, 2014
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. //functions.php
  2.  
  3. add_filter('wqep_included_order_default_product_keys_filter',  'remove_product_from_csv');
  4.  
  5. function remove_product_from_csv($keys)
  6. {
  7.     //default keys are 'sku', 'name', 'quantity', 'line_price_without_taxes', 'line_price_with_taxes'
  8.    
  9.     //to remove totally the product data :
  10.     return array();
  11.  
  12.     //to keep only sku and quantity
  13.     return array('sku', 'quantity');
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement