Dear priori!
pls use the strip_tags function to remove html formatting.
http://php.net/manual/en/function.strip-tags.php
pls open the file: modulesmod_janews_fptmpltelineiii_fp.php and find codes:
[PHP] <?php echo $bigmaxchar?$news->introtext1:$news->introtext;?>[/PHP]
replace:
[PHP]<?php echo strip_tags($bigmaxchar?$news->introtext1:$news->introtext);?>[/PHP]
And find codes:
[PHP]<?php echo $smallmaxchar?$news->introtext1:$news->introtext;?>[/PHP]
and replace:
[PHP]<?php echo strip_tags($smallmaxchar?$news->introtext1:$news->introtext);?>[/PHP]
2) open the file: modulesmod_janews2tmplblog_item.php and find codes:
[PHP]
<?php
if($maxchars > strlen($row->introtext1)) {
echo $row->introtext;
} else {
echo $row->introtext1;
}
?>
[/PHP]
and replace:
[PHP]
<?php
if($maxchars > strlen($row->introtext1)) {
echo strip_tags($row->introtext);
} else {
echo strip_tags($row->introtext1);
}
?>
[/PHP]
Good luck