Hi David,
I would like to remove the opening and closing brackets () from any product titles in all merchant feeds. Currently I am using the search and replace filter to do this in each feed. Presume there is a way to do this on import, maybe in includes/admin.php ?
Cheers
Adrian
Hi Adrian,
Sure - in includes/admin.php you could insert this immediately after the Product Mapping area...
Look for the following comment around line 268:
/* check product record for minimum required fields */
...and then ADD the following new code immediately before that point:
$importRecord["name"] = trim($importRecord["name"],"()");
Cheers,
David.