Hi David
Trust you are well
Was wondering could you advise me on a mod to global filter products on import so any items below say £9.99 will not be imported?
regards
philip
Hi Phil,
It's an easy mod to includes/admin.php. In that file, look for the following code around line 275:
$importRecord["price"] = tapestry_decimalise($importRecord["price"]);
...and REPLACE with:
$importRecord["price"] = tapestry_decimalise($importRecord["price"]); if ($importRecord["price"] < 9.99) return;
Hope this helps!
Cheers, David. -- PriceTapestry.com
thanks yet again David!!!
Phil Stone www.buy24-7.net
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Phil,
It's an easy mod to includes/admin.php. In that file, look for the following code around line 275:
$importRecord["price"] = tapestry_decimalise($importRecord["price"]);
...and REPLACE with:
$importRecord["price"] = tapestry_decimalise($importRecord["price"]);
if ($importRecord["price"] < 9.99) return;
Hope this helps!
Cheers,
David.
--
PriceTapestry.com