Exclude SKU-range from eBay

From MediaSell

Jump to: navigation, search

Exclude SKUs that are BETWEEN min SKU to max SKU from being sent to eBay.

  • Customize SKU0200 and SKU0300 in the script below.
if( marketplace == 'EBay' )
{
  min = "SKU0200";  
  max = "SKU0300";  

  if( item.sku >= min && item.sku <= max ) return 0;
} 


Exclude SKUs that are OUTSIDE min SKU to max SKU from being sent to eBay.

  • Customize SKU0200 and SKU0300 in the script below.
if( marketplace == 'EBay' )
{
  min = "SKU0200";  
  max = "SKU0300";  

  if( item.sku >= min || item.sku <= max ) return 0;
}
Personal tools