Read node 520. What about products that have trademark symbols in product name. ®
Does PT automatically strip it out or do I need to remove it before importing?
Is there a way to allow it in?
BTW- You were right.
Came across my first merchant that had loaded the description fields with links to bypass the affiliate link, including Buy Now, add to cart, click here to learn more...
Pretty sad.
Diana
Hi Diana,
HTML entities in the product name (can be permitted) by changing the following code on line 157 of includes/admin.php:
$record[$admin_importFeed["field_name"]] = tapestry_normalise($record[$admin_importFeed["field_name"]]);
...to:
$record[$admin_importFeed["field_name"]] = tapestry_normalise($record[$admin_importFeed["field_name"]],"&;");
Without that change, the & and ; would be stripped, leaving "reg". However, take a close look after making this change to make sure that URLs, links and re-writes still work etc., as these characters are stripped because they can cause all sorts of problems when allowed into URLs etc!
Cheers;
David.