Hello,
for add show field broker in category vie in real estate manager soft
You need in file realestatemanager.php
in function showCategory
replace below row
Code: |
$query = "SELECT h.id, h.hits,h.hlocation, h.htitle, hc.idcat AS catid, h.fk_rentid, h.price,h.priceunit, h.year,h.link, h.image_link, h.listing_type
|
to
Code: |
$query = "SELECT h.id, h.hits,h.hlocation, h.htitle, hc.idcat AS catid, h.fk_rentid, h.price,h.priceunit, h.year,h.link, h.image_link, h.listing_type, h.broker
|
after that in file realestatemanager.html.php
in function displayHouses
find code like
Code: |
<td width="40%">
<?php echo $row->htitle; ?>
</td>
|
and replace to
Code: |
<td width="40%">
<?php echo $row->htitle; ?>
</td>
<td width="10%">
<?php echo $row->broker; ?>
</td>
|
or some like that you may use for any field
Please backup all file what you change
Thanks,
OrdaSoft team