Hello,
we special cut long title in real estate manager category view
You may change that at category layout:
in file:
{site}/components/com_realestatemanager/views/alone_category/tmpl/default.php
Code: |
if (strlen($row->htitle) > 45)
echo substr($row->htitle, 0, 25), '...';
else {
echo $row->htitle;
}
|
and replace to some thing like below:
Code: |
if (strlen($row->htitle) > 45)
echo substr($row->htitle, 0, 35), '...';
else {
echo $row->htitle;
}
|
Thanks,
OrdaSoft team