Hi,
On my site I have a currency field group that are controlled by the country field group.
All works fine on the listings side (correct currency is being displayed for the correct country)
My problems is in the advance search module.
I can't get the currency field to appear when the country is selected.
Here is the code I'm using in the ../Mytheme/modules/advanced_search.thtml file:
<div class="jr_fieldDiv">
<?php __t("Where will you look?");?>
</div>
<div class="jr_fieldDiv">
{jr_country}
</div>
<div class="jr_fieldDiv jr_hidden">
<?php __t("How much do you plan to spend?");?>
{jr_pricexcd}
</div>
The structure of the fields and field groups are:
Field Group: location -> Field name: jr_country
Field Group: Pricexcd -> Field name: jr_pricexcd
I have tried to move the field jr_pricexcd to the same group as jr_country and have the
jr_country field control jr_pricexcd field but that still does not work.
I think the problem might be that the field type for jr_pricexcd is an integer but that's just a guess.
Can you tell me what I am doing wrong.
Thanks in advance