Exclude items by item note
From FillZ
|
This script will prevent items from being sent to any marketplaces if there is an "*" anywhere in the note field of a listing: var item = FILLZ.ITEM.v1; if (/[*]/.test(item.note)) return 0;
var item = FILLZ.ITEM.v1;
if (FILLZ.venue == 'abebooks') {
if (/[*]/.test(item.note)) return 0;
}
|

