OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Hide HouseID and Expiration date (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Hide HouseID and Expiration date

Token (User)
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
Hide HouseID and Expiration date 10 Years, 10 Months ago
Karma: 0  
Hi,

Is it possible to hide HouseID and Expiration date? I don't want anyone to see this.
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:Hide HouseID and Expiration date 10 Years, 10 Months ago
Karma: 101  
Hello,

You may do that with help edit file:
file:///home/andrew/public_html/joomla_25/components/com_realestatemanager/realestatemanager.html.php

find function :
displayHouse

in it

find row look like:
Code:

       <tr>
            <td nowrap="nowrap" align="right" class="title_td">
                <strong><?php echo _REALESTATE_MANAGER_LABEL_HOUSEID; ?>:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong>
            </td>
            <td>
                <?php echo $house->houseid; ?>
            </td>
        </tr>



and
Code:

<tr>
<td nowrap="nowrap" align="right" class="title_td">
<strong><?php echo _REALESTATE_MANAGER_LABEL_EXPIRATION_DATE; ?>:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong>
</td>
<td>
<?php echo $house->expiration_date; ?>
</td>
</tr>


and remove

Please backup that file first

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
nickg (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Adventures of globetrotter
Re:Hide HouseID and Expiration date 10 Years, 6 Months ago
Karma: 0  
hello
Also I interested to hide this informations
but it is impossible to find exactly le code : components/com_realestatemanager/realestatemanager.html.php.
Could you tell me at which line (number) where I can find this code
Thanks
Logged Logged
The administrator has disabled public write access.
nickg (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Adventures of globetrotter
Re:Hide HouseID and Expiration date 10 Years, 6 Months ago
Karma: 0  
I tried to delete all the lines of code with the words "houseid" and "expiration_date" but not to disable the display of HouseID and Expiration date
Logged Logged
The administrator has disabled public write access.
IvanOrdaSoft (Visitor)
Posts: 0
graphgraph
User Offline
Re:Hide HouseID and Expiration date 10 Years, 6 Months ago
Karma: 0  
Hello,

You may do that with help edit file:
file:///home/andrew/public_html/joomla_25/components/com_realestatemanager/views/view_house/tmpl/default.php

They line 329-332 delete code
Code:


                <div class="row_text">
                    <span class="col_text_1"><?php echo _REALESTATE_MANAGER_LABEL_HOUSEID; ?>:</span>
                    <span class="col_text_2"><?php echo $house->houseid; ?></span>
                </div>



And
line 607-611 delete code
Code:


                    <div class="row_text">
                    <span class="col_text_1"><?php echo _REALESTATE_MANAGER_LABEL_EXPIRATION_DATE; ?>:</span>
                    <span class="col_text_2"><?php echo data_transform_rem($house->expiration_date); ?></span>
                </div>

Logged Logged
The administrator has disabled public write access.
nickg (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Adventures of globetrotter
Re:Hide HouseID and Expiration date 10 Years, 6 Months ago
Karma: 0  
thanks a lot
Logged Logged
The administrator has disabled public write access.
Go to top
»