I am using this plugin along with the qtranslate one and I get the 3 translations appearing as descriptions joined together? Can you please help?
I know it may be just a query change in the code that I can do manually, so if you could please advise on what and where?
Thanks,
Malky
http://wordpress.org/extend/plugins/wp-property/
StonJohnsson
Member
Posted 7 months ago #
you have to dig thru the plugin code and change some outputs, eg
from
<?php echo $property_stat_label;?>
to
<?php _e($property_stat_label);?>
it's not trivial if you don't know your way with some php-programming...