Exclude specific ISBNs/UPCs/ASINs from marketplaces
From MediaSell
|
This script will allow you to remove items with specific ISBNs/UPCs/ASINs from being listed on specified marketplaces. The example below will remove 0123456789 from AbeBooks. You would need to fill in the ISBN/UPC/ASIN for your item to replace 0123456789 if you use this script. if (venue == 'Abebooks') {
if (item.asin.match(/0123456789/i)) return 0;
}
if (venue == 'Abebooks') {
if (item.asin.match(/0123456789|1123456789|2123456789/i)) return 0;
}
if (venue == 'Abebooks' || venue == 'Amazon') {
if (item.asin.match(/0123456789|1123456789|2123456789/i)) return 0;
}
|

