HTML Tags being stripped
- Posted by trey braid (9) Offline
I saw another post that pointed out a template overide to restore HTML Tags to the articles.
I removed this (line 202) - /***echo JHtmlString::truncate(strip_tags($item->introtext), $introtext_truncate);***/
and added this in its place - echo $item->introtext;
I had email addresses at the beginning of the article and they still are not active...anything else I need to do?
URL - aif-proindoorfootball.com/front-office.html
Thanks
Trey
1 year 4 months ago #1
by trey braid
I removed this (line 202) - /***echo JHtmlString::truncate(strip_tags($item->introtext), $introtext_truncate);***/
and added this in its place - echo $item->introtext;
I had email addresses at the beginning of the article and they still are not active...anything else I need to do?
URL - aif-proindoorfootball.com/front-office.html
Thanks
Trey
The topic has been marked as resolved.
- Posted by TemplatePlazza (5260) Offline
Hi trey, I've taken another look at it on my localhost and confirmed that it's functioning correctly. The issue might be related to the override being placed in the wrong file. If you're using the Infinity theme, the file you should be editing is "infinity_ajax.php." You'll find the relevant code around line 116.
1 year 4 months ago #2
by TemplatePlazza
The topic has been marked as resolved.
- Posted by trey braid (9) Offline
I made the change in that file ultimately; but, when I did the whole article text was then displayed. Is there a way to make the change and still retain the Introtext Characters Limit?
Thanks
Trey
1 year 4 months ago #3
by trey braid
Thanks
Trey
The topic has been marked as resolved.
- Posted by TemplatePlazza (5260) Offline
Gi Trey,
Ok, try this one
1 year 4 months ago #4
by TemplatePlazza
Ok, try this one
$introtext = strip_tags($item->introtext, '<a>');
$truncatedIntrotext = JHtmlString::truncate($introtext, $introtext_truncate);
echo $truncatedIntrotext;
The topic has been marked as resolved.
- Posted by trey braid (9) Offline
The topic has been marked as resolved.