You are here:  » Remove brackets from all product names

Support Forum



Remove brackets from all product names

Submitted by paddyman on Fri, 2009-11-13 12:19 in

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

Submitted by support on Fri, 2009-11-13 12:40

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.

Submitted by paddyman on Fri, 2009-11-13 13:18

Thanks David,

Works great

Adrian