When I'm trying to put pefix via extras before price but is not showing I want to put currency before price howq i can do that?
Hi,
Because the price field is DECIMAL in the database the text filters cannot be used, however to prefix a currency the correct way to do this is by editing config.php where you will see:
$config_currencyHTML = "";
Simply change this to, for example:
$config_currencyHTML = "$";
Cheers, David.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi,
Because the price field is DECIMAL in the database the text filters cannot be used, however to prefix a currency the correct way to do this is by editing config.php where you will see:
$config_currencyHTML = "";
Simply change this to, for example:
$config_currencyHTML = "$";
Cheers,
David.