
Originally Posted by
deals311
I had a similar problem with RSS Importer. I wanted tags in the description but they overflowed the summary.
Search for files with this: Story_Content_Tags_To_Allow
Find code that looks like this:
$linkres->link_summary = strip_tags($linkres->content, Story_Content_Tags_To_Allow);
Change it to something like this. It will remove ALL tags from the summary. Sorry more that that would take a major template change.:
$linkres->link_summary = strip_tags($linkres->content, "");