Page 1 of 1

Need Help Please

PostPosted: 25 Oct 2014, 12:38
by chrisgoat
I need to know how to move the $ sign from 50,000$ to $50,000, I have looked through these forums and non of the suggestions seem to work.
One other thing is there a way to make a text filed in the "Values of references" for example like annual taxes; witch would be deferent for each property and a text value would allow you to enter the deferent taxes for each property.
URL is http://harrah.us.tempcloudsite.com/

Thanks for any help.

Re: Need Help Please

PostPosted: 26 Oct 2014, 15:28
by chrisgoat
Ok I managed to get the currency symbol moved, but I need to know if there is a way to insert a text field into the "Values of references" so you can add annual taxes or other things for each property.

Thanks


How to move the currency symbol from 50,000.00$ to $50,000.00 as of version 1.9.1
Open file: \protected\modules\apartments\models\Apartment.php

FIND:
Code: Select all
return $this->setPretty($price).' '.$this->getCurrency().' '.self::getPriceName($this->price_type); 


REPLACE WITH:
Code: Select all
return $this->getCurrency().' '.$this->setPretty($price).' '.self::getPriceName($this->price_type);