Does the description field accept HTML codes? If not, is it possible to do so? Thanks.
Hi,
HTML is stripped by default, by the following code beginning at line 163 of includes/admin.php:
$record[$admin_importFeed["field_description"]] = strip_tags($record[$admin_importFeed["field_description"]]); $record[$admin_importFeed["field_description"]] = tapestry_normalise($record[$admin_importFeed["field_description"]],",'\'\.%!");
To enable the description field to be imported "as-is", simply comment out or delete the above lines and HTML will be imported and displayed without restriction.
Cheers, David.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi,
HTML is stripped by default, by the following code beginning at line 163 of includes/admin.php:
$record[$admin_importFeed["field_description"]] = strip_tags($record[$admin_importFeed["field_description"]]);
$record[$admin_importFeed["field_description"]] = tapestry_normalise($record[$admin_importFeed["field_description"]],",'\'\.%!");
To enable the description field to be imported "as-is", simply comment out or delete the above lines and HTML will be imported and displayed without restriction.
Cheers,
David.