ISSUE SUMMARY:
Hello,
See the attachment and example.
When i search as example 1) femail "weiblich", state "Bundesland" and country "Land" i get nothing,2) no results, => when i modify the search at this second table i get the result.
Please help!
Laurentiu
=> where can i change the countries and delete the rest. I need only Austria at the top, Germany,Switzerland
Hi Laurentiu
please goto joomla backend > extensions > module manager, click on dating search, set State Field Code = FIELD_Bundesland
for remove some country on list, you must edit this file:
/components/com_community/libraries/fields/countries.xml
but that for general country list, I mean at profile page, and registration page will be removed too.
Regards
Hi Albertus,
thank you for your help, i have edited this file under
/components/com_community/libraries/fields/countries.xml
=> now i have only the countries that i want at the "dating search plugin" but when i start a search, it looks like that image, in this second screen that i get after, i have all the countries and in english.
It is wrong when i try to delete all the countries that i don´t need from this file =>en-GB.com_community.country.ini ? ==> I tried, but it´s not working!
I see you are the dating search master :-)
www.jomsocial.com/forum/modules-plugins-...search-module#102441
www.jomsocial.com/forum/modules-plugins-...female-or-both#90575
BR Laurentiu
i do the Change, and now i have only the countries i Need, but i have further to select the Country that i have beore select, do you know why....
hmmm,....and why it changed automaticly to english.
Thank you for your help!
Hi, if I am not mistaken i read in the forum that this bug is since last year known...... how long will it take to solve this?
Where can i change the plugin to make the "countries field" and "city field" invisible?
Thanks
Laurentiu Ion
Hi Laurentiu,
our developer still on this bug. please wait for the fix. I will let you know about it.
to make hide countries and city from dating search module. you can override it:
1. copy default.php from /modules/mod_datingsearch/tmpl/ to /templates/[frontend template]/html/mod_datingsearch/
2. edit it ad remove the code at line 157 and 161
<p><?php echo JText::_('MOD_DATINGSEARCH_CITY'); ?></p>
<input class="joms-input" type="text" id="datingsearch_city" name="datingsearch_city" value="<?php echo $city;?>"/><select id="datingsearch_country" name="datingsearch_country" class="joms-select">
<option value="" <?php if($country=='')echo 'selected'?>><?php echo JText::_('MOD_DATINGSEARCH_COUNTRY'); ?></option>
<?php foreach($field->value->country as $data) { ?>
<option value="<?php echo JText::_($data); ?>" <?php if($country==$data)echo 'selected'?>><?php echo JText::_($data); ?></option>
<?php } ?>
</select>
Hi,
here the fix.