Match Lowest Price on AbeBooks
From MediaSell
|
This script will match the lowest price on AbeBooks in SAME OR BETTER CONDITION with $1.00 price floor. Please note that Abebooks pricing data doesn't always contain conditions so you might not always be matched to the very lowest price.
if (marketplace == 'Abebooks') {
price = item.basePrice;
priceFloor = 1.00;
lowPrice = 0;
This script will match the lowest price on AbeBooks in ANY CONDITION with $1.00 price floor. Please note that Abebooks pricing data doesn't always contain conditions so you might not always be matched to the very lowest price.
if (marketplace == 'Abebooks') {
price = item.basePrice;
priceFloor = 1.00;
lowPrice = 0;
|

