Page 1 of 1

[SOLVED] How to allow links with strip_tags smarty...?

Posted: Wed Oct 17, 2012 11:52 pm
by henchenm
I used the strip_tags command in my News summary template to prevent my clients from mucking up the news feed. Can anybody tell me how to use strip_tags but allow links (or other tags)?

Thanks in advance!

Re: How to allow links with strip_tags smarty...?

Posted: Thu Oct 18, 2012 6:12 pm
by nicmare
try something like this:
{$entry->summary|replace:"<a":"(a"|replace:"</a>":"(/a)"|strip_tags|replace:"(a":"<a"|replace:"(/a)":"</a>"}

Re: How to allow links with strip_tags smarty...?

Posted: Thu Oct 18, 2012 6:34 pm
by henchenm
That worked. Thanks!!!!!