Parse error: syntax error, unexpected T_STRING, ex 11 Years, 5 Months ago
Karma: 0
Error was fixed but now property prices still do not show currency in front, it only show 0 at end. Surely by now as an international business you should have a module for this by now?
Please help
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/prop24/public_html/properties/components/com_realestatemanager/realestatemanager.html.php on line 1038
After following your details to change below I got error above:
You may type "€"
But for show currency before price vaue, you need rebuild layout(sorry we have't that in setting).
You need check file:
{your site }/components/com_realestatemanager/realestatemanager.html.php
and every where you will find code look like:
Code:
<?php echo $row->price, ' ', $row->priceunit; ?>
you will need replace it to :
Code:
<?php echo $row->priceunit, ' ', $row->price; ?>
Logged
Last Edit: 2013/07/05 10:48 By wick.
The administrator has disabled public write access.