OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Problem to Spanish translation (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Problem to Spanish translation

miriamAT (Visitor)
Posts: 0
graphgraph
User Offline
Problem to Spanish translation 10 Years, 6 Months ago
Karma: 0  
Hi,
I have a strange problem with search module. In home the module is in English, but, when I press search, it shows in Spanish. Only happens in the home in English. How I can fix it?

After this, I want to remove from each apartment: House id, expiration date, latitude and longitude. Can you tell me, file and line, where I can modify?

Sorry for my English.
I hope you can help me.

Bye.
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:Problem to Spanish translation 10 Years, 6 Months ago
Karma: 101  
Hello,

Please in file


{site}/modules/mod_realestatemanager_search/tmpl/default.php

find row :
Code:

if($languagelocale == '') $languagelocale = "en-GB";


and replace to

Code:

if ($languagelocale == ''){
    $mosConfig_lang = $lang->getTag();
    $languagelocale = $lang->getTag();
}
if ($languagelocale == '')
    $languagelocale = "en-GB";



Please backup file first

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
RicardoAT (User)
Junior Boarder
Posts: 36
graphgraph
User Offline Click here to see the profile of this user
Re:Problem to Spanish translation 10 Years, 6 Months ago
Karma: 0  
Thank you very much, first question solved. Would I could answer the second question?


"After this, I want to remove from each apartment: House id, expiration date, latitude and longitude. Can you tell me, file and line, where I can modify?"

Thank you very much again.
Logged Logged
Last Edit: 2013/10/21 13:10 By RicardoAT.
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:Problem to Spanish translation 10 Years, 6 Months ago
Karma: 101  
Hello,

First of all - we not show empty fields

one property view you may edit in file:
{your site}/components/com_realestatemanager/views/view_house/tmpl/default.php


for remove house_id you need remove below 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>


exactly for all other

Please backup that file first

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
RicardoAT (User)
Junior Boarder
Posts: 36
graphgraph
User Offline Click here to see the profile of this user
Re:Problem to Spanish translation 10 Years, 6 Months ago
Karma: 0  
Fixed, thank you very much.
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:Problem to Spanish translation 10 Years, 6 Months ago
Karma: 101  
Hello,

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

If you wil lhave some other errors or questions please write

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