OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
realestate manager Listing Type (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Realestate manager Listing Type

servettk (Visitor)
Posts: 0
graphgraph
User Offline
Re:realestate manager listing type 10 Years, 3 Months ago
Karma: 0  
Thank you fot the instrucktion but after changing the text is the problem the red for sale and the for rent image is not to see.
what is to do?
Logged Logged
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:realestate manager listing type 10 Years, 3 Months ago
Karma: 101  
Please do next:

Find below code:
Code:

              
                        $sell_type = ($row->listing_type ==1) ? "For Rent" : "For Sale";
                        if($imageURL!='')
                            {  
                                $imageURL = searchPicture ($image_source_type,$imageURL);
                                $imageURL = $mosConfig_live_site.$imageURL;
                            }
                        else $imageURL = "components/com_realestatemanager/images/no-img_eng.gif";?>
                        <div class="span4 top_pro_eastate img-polaroid">
                            <span class="state <?php echo $sell_type;?>"><?php echo $sell_type;?></span>



Replace it to code:
Code:


                        $sell_type_forTranslate = ($row->listing_type ==1) ? "For Rent" : "For Sale";
                        $sell_type = ($row->listing_type ==1) ? "For Rent" : "For Sale";
                        if($imageURL!='')
                            {  
                                $imageURL = searchPicture ($image_source_type,$imageURL);
                                $imageURL = $mosConfig_live_site.$imageURL;
                            }
                        else $imageURL = "components/com_realestatemanager/images/no-img_eng.gif";?>
                        <div class="span4 top_pro_eastate img-polaroid">
                            <span class="state <?php echo $sell_type;?>"><?php echo $sell_type_forTranslate;?></span>



and please translate only in row
Code:

$sell_type_forTranslate = ($row->listing_type ==1) ? "For Rent" : "For Sale";


Please backup file first:

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
servettk (Visitor)
Posts: 0
graphgraph
User Offline
Re:realestate manager listing type 10 Years, 3 Months ago
Karma: 0  
thanks working fine!
Logged Logged
Last Edit: 2014/01/09 10:03 By .
The administrator has disabled public write access.
Go to top
»