1
Hi Xoopsers...
I'm trying to add some SEO features in Classifieds 2.0RC2, so i've been editing index.php file like this:
$xoopsTpl->assign('desctext', $desctext);
$desctextclean = strip_tags($desctext, '');
$xoopsTpl->assign('xoops_pagetitle',"$title $ctitle - $type");
$xoTheme->addMeta('meta', 'description', "$title $ctitle $type $price $typeprice $desctextclean|truncate:100:''");
All works ok, but I've tried to truncate $desctextclean to 100 chars, with no luck.
Any idea or help? (I'm not a programmer :) )