Duplicate entry \'0\' for key 1 SQL=INSERT INTO jos_fb_whoisonline (`userid` , `time`, `what`, `task`, `do`, `func`,`link`, `userip`, `user`) \n VALUES (\'0\', \'1224016531\', \'me restringe solo a \\"100.000.000\\",\',\'\',\'\',\'view\',\'/index.php?option=com_fireboard&Itemid=42&func=view&catid=12&id=5002\', \'38.103.63.59\', \'0\')
me restringe solo a "100.000.000", (0 viewing)
Favoured: 0
|
|
|
TOPIC: me restringe solo a "100.000.000",
|
equiweb (User)
Fresh Boarder
Posts: 5
|
|
Moving the currency sign 1 Year, 6 Months ago
|
Karma: 0
|
I have altered some of the object names to fit a UK based estate agents but want to have the GB £ sign appear before the property price and not after. Can anyone tell me how to do this? Thanks! Pete. 
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
Re:Moving the currency sign 1 Year, 4 Months ago
|
Karma: 0
|
You have to replace all the code that is like this:
| Code: |
value = .number_format($obj->rent,0,$params['sep2'],$params['sep1']) ." ".$params['currency']
|
with this:
| Code: |
$value = $params['currency']. " " .number_format($obj->rent,0,$params['sep2'],$params['sep1'])
|
in the estateagent.html.php file
Post edited by: VivaChile, at: 2007/06/08 00:00<br><br>Post edited by: VivaChile, at: 2007/06/08 00:02
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
gbb (User)
Fresh Boarder
Posts: 7
|
|
Re:Moving the currency sign 1 Year ago
|
Karma: 0
|
|
Viva Chile!!!...
Hola compadre, menos mal que pillo un chileno por aquí, quería hacer una consulta pero como al parecer tu vas bien adelantado prefiero hacértela a tí.
Sucede que cuando intento poner precios sobre los 100 millones de pesos no puedo, me restringe solo a "100.000.000", ¿sabes como arreglar eso?
Segunda: ¿como puedo hacer para expresar tanto en $ como en UF?
Ojala veas este post y de antemano gracias.
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
mazator (User)
Fresh Boarder
Posts: 1
|
|
me restringe solo a "100.000.000", 11 Months, 1 Week ago
|
Karma: 0
|
|
I have the same problem. Any solution?
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
Kit (User)
Fresh Boarder
Posts: 1
|
|
moved the currency sign but not the last one!! 4 Months, 1 Week ago
|
Karma: 0
|
|
Just like Viva Chile said in estateagent.html.php move the PHP code between the < and > which contains 'currency' to the beginning of the code line after the value param:
e.g:
$value = $params['currency'] ." " .number_format($obj->rent,0,$params['sep2'],$params['sep1']) ;
Also to these lines, before the input boxes:
<?php echo $param["currency"];?><input class="inputbox" type="Text" name="minrent" size="9" maxlength="10"> - <input class="inputbox" type="Text" name="maxrent" size="9" maxlength="10">
but can anyone find where to change the one that comes up as the rent field amount on the detailed info page of the apartment/object, cos it's not in this file.
p.s. - the same applies to the me-search module - simply move the currency code
<?php echo $param["currency"];?>
where you want it!
Cheers
Chris
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
|
|