Hello David is there a way to filter by price in New Distribution? I would like to filter out all prices below a certain amount from my import.
Thank you, Roy
Hi Roy,
Straight forward to add within includes/admin.php. Look for the following comment around line 273:
/* check product record for minimum required fields */
...and just BEFORE that point, add the following line:
if ($importRecord["price"] < 25.00) return;
...replacing 25.00 with the minimum product price you want imported...
Cheers, David. -- PriceTapestry.com
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Roy,
Straight forward to add within includes/admin.php. Look for the following comment around line 273:
/* check product record for minimum required fields */
...and just BEFORE that point, add the following line:
if ($importRecord["price"] < 25.00) return;
...replacing 25.00 with the minimum product price you want imported...
Cheers,
David.
--
PriceTapestry.com