OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Changing display position of Expration Date [REM] (0 viewing) 

Joomla Real Estate Wishlist

Go to bottom Favoured: 0

Changing display position of Expration Date [REM]

bidbank (Visitor)
Posts: 0
graphgraph
User Offline
Changing display position of Expration Date [REM] 12 Years, 1 Month ago
Karma: 0  
I would like to change the display position of the php script <?php echo
$house->expiration_date;?> for it to show in Gallery View just under htitle
within the okno div tags/class but having done that, the date does not
seem to show in the front end. However if I move the same script, i.e <?php
echo $house->expiration_date;?> to a position within the List View table and
the switch to List View, I do see the Expiration Date. I would like to
know what else I need to do to make the echoing a success. Please help.

Many thanks
Logged Logged
Last Edit: 2012/10/22 12:32 By .
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8367
graph
User Offline Click here to see the profile of this user
Re:Changing display position of Expration Date [REM] 12 Years, 1 Month ago
Karma: 102  
Hello,

For add some field in gallery view in Real Estate manager

Please open file:
{yours site]/components/com_realestatemanager/realestatemanager.html.php

and find rows look like:

Code:

              <div class="titlehouse">
                 <a href="<?php echo sefRelToAbs($link); ?>" >
                    <?php if(strlen($row->htitle)>60) echo substr($row->htitle,0,60),'...';
                    else {
                        echo $row->htitle;
                    }?>
                 </a>
              </div>


and replace to
Code:

              <div class="titlehouse">
                 <a href="<?php echo sefRelToAbs($link); ?>" >
                    <?php if(strlen($row->htitle)>60) echo substr($row->htitle,0,60),'...';
                    else {
                        echo $row->htitle;
                    }?>
                    <?php echo $row->expiration_date;?>
                 </a>
              </div>



Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
bidbank (Visitor)
Posts: 0
graphgraph
User Offline
Re:Changing display position of Expration Date [REM] 12 Years, 1 Month ago
Karma: 0  
Thanks, it worked!
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8367
graph
User Offline Click here to see the profile of this user
Re:Changing display position of Expration Date [REM] 12 Years, 1 Month ago
Karma: 102  
hello,

You may wote for us on joomla.org and write excellent review

If you will have some errors or questions, please write

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»