Hi David,
Would like to replace Men's with Mens for all feeds on import. Can you advise, what I would put in includes/admin.php ?
Many thanks
Adrian
Hi Adrian,
If you look for the following comment around line 186 of includes/admin.php...
/* apply user filters */
And then insert "global filter" code immediately before this point. For example, to replace "Men's" with "Men" in the name field, use:
$importRecord["name"] = str_replace("Men's","Mens",$importRecord["name"]);
(note that this will be applied before Product Mapping)
Cheers, David.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Adrian,
If you look for the following comment around line 186 of includes/admin.php...
/* apply user filters */
And then insert "global filter" code immediately before this point. For example, to replace "Men's" with "Men" in the name field, use:
$importRecord["name"] = str_replace("Men's","Mens",$importRecord["name"]);
(note that this will be applied before Product Mapping)
Cheers,
David.