OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
SOLVED - Property description too short (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

SOLVED - Property description too short

yellowratberni (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
SOLVED - Property description too short 10 Years, 1 Month ago
Karma: 0  
Hello, as you can see on the attached image




the descriptions below the images of the properties is too short...how can I add more lines to it?

I've the 3.0 pro version, joomla 2.5.17

Thank you
Logged Logged
Last Edit: 2014/02/26 15:03 By yellowratberni.
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8243
graph
User Offline Click here to see the profile of this user
Re:Property description too short 10 Years, 1 Month ago
Karma: 101  
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
Logged Logged
The administrator has disabled public write access.
yellowratberni (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Re:Property description too short 10 Years, 1 Month ago
Karma: 0  
Hello, I've tried what you wrote but nothing seems to change...still very short description of the property
Logged Logged
The administrator has disabled public write access.
yellowratberni (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Re:Property description too short 10 Years, 1 Month ago
Karma: 0  
Hello, I've solved in the way that you wrote but changing default.php in a different folder:

{site}/components/com_realestatemanager/views/all_houses/tmpl/default.php

Depends on the page that you chosse to visualize from the menus of joomla.
Thank you again!
Logged Logged
The administrator has disabled public write access.
Go to top
»