Re:price bug ? (1 viewing) (1) Guest
Favoured: 0
|
|
|
TOPIC: Re:price bug ?
|
Roby (User)
Fresh Boarder
Posts: 6
|
|
price bug ? 3 Months, 4 Weeks ago
|
Karma: 0
|
QUOTE: No-one know how solve this 'bug', as posted from others in the forum? Im really in troumble with a my client. :(
Setting the price from a object 0.00 the system take the price from the previous object in the objectlist.
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
harrie (User)
Fresh Boarder
Posts: 8
|
|
Re:price bug ? 3 Months, 4 Weeks ago
|
Karma: -1
|
|
Try this: when the price is 0.00 it will show "Prijs op aanvraag". That's dutch for "call for price" or something like that.
Good luck.
First backup your estateagent.html.php file
Than in estateagent.html.php (line 311)
<?php
if($obj->type == 1 || $obj->type == 3) {
if($obj->rent != 0.00) {
$value = $params['currency']. " " .number_format($obj->rent,0,$params['sep2'],$params['sep1']);
}
else {
$value = "Prijs op aanvraag";
}
}
else{
if($obj->price != 0.00) {
$value = $params['currency']. " " .number_format($obj->price,0,$params['sep2'],$params['sep1']);
}
else {
$value = "Prijs op aanvraag";
}
}
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
Roby (User)
Fresh Boarder
Posts: 6
|
|
Re:price bug ? 3 Months, 4 Weeks ago
|
Karma: 0
|
|
It seam working !!, thanks a lot
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
Re:price bug ? 3 Months, 4 Weeks ago
|
Karma: 1
|
|
goode morning harrie,
do you have any idea what to do to translate it in different languages?
thanks a lot an best regards
carolina
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
Roby (User)
Fresh Boarder
Posts: 6
|
|
Re:price bug ? 3 Months, 4 Weeks ago
|
Karma: 0
|
|
Ciao Carolina, traslare cosa? Prijs op aanvraag ? basta che lo sostituisci con un 'Prezzi in Agenzia' o simili ... ma forse ti riferivi a qualcos'altro?
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
Re:price bug ? 3 Months, 3 Weeks ago
|
Karma: 1
|
|
Many thanks for the reply, but I think I have ask my question in a wrong way. My website is available in 3 languages, and I do not know what to do to have, "Prijs op aanvraag" then in the correct language. do you have an idea?
best regards
carolina
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
|
|