Home › Forums › Theme support › Prestige theme and search › Reply To: Prestige theme and search
Hi,
for the euro format:
please open the file “estate-entry.php”, go to line 75 and replace this code:
$mprice[]=number_format($eprice,0,".",",");
with this:
$mprice[]=number_format($eprice,0,",",".");
Then on line 76, replace this code:
$eprice=number_format($eprice,0,".",",");
with this:
$eprice=number_format($eprice,0,",",".");
Then open the file “estate-single-default.php” and replace line 57:
<?php if($eprice) { echo number_format($eprice,0,".",","); } ?>
with this
<?php if($eprice) { echo number_format($eprice,0,",","."); } ?>
and line 154:
<?php if($eprice) { echo number_format($eprice,0,".",","); } ?>
with this:
<?php if($eprice) { echo number_format($eprice,0,",","."); } ?>
Permalinks:
Please reset the permalinks to the default settings and try if its working then. Then set it again to your custom structur, because WordPress will rewrite the permalink settings in the htaccess file, I think then it’s working.
Update
Are you sure? On the portfolio page right? We’ve tested it on our localhost and it’s working. Maybe it’s in your browser cache. Do you use a cache plugin?