Advertisement:

Author Topic: [SOLVED] Search country option off - can't choice the city (OsclassWizards)  (Read 1028 times)

Igirus

  • Newbie
  • *
  • Posts: 20
Hey,

can anyone help, when turn off the Search Country Option in Appearance --> OsclassWizards --> Templates settings. Regions shows but cities can't choose in search bar. (First need choose the country, but it's turned off).
Or how to make defauld one country, that never need to change?
« Last Edit: February 01, 2016, 05:46:36 pm by Igirus »

teseo

  • Hero Member
  • *****
  • Posts: 6169
Re: Search country option off - can't choice the city (OsclassWizards)
« Reply #1 on: February 01, 2016, 04:36:38 pm »
Hi,

osclasswizards/header.php:

Replace this block:

Code: [Select]
              <?php if($showCountry) { ?>
              <div class="col-md-2">
                <div class="cell selector">
                  <?php osclasswizards_countries_select('sCountry''sCountry'__('Select a country'OSCLASSWIZARDS_THEME_FOLDER));?>
                </div>
              </div>
              <?php ?>

with:

Code: [Select]
              <?php if($showCountry) { ?>
              <div class="col-md-2">
                <div class="cell selector">
                  <?php osclasswizards_countries_select('sCountry''sCountry'__('Select a country'OSCLASSWIZARDS_THEME_FOLDER));?>
                </div>
              </div>
              <?php } else { ?>
                    <input type="hidden" id="sCountry" name="sCountry" value="US"/>
                    <script type="text/javascript">
                        $(window).load(function(){
                            $("#sCountry").change();
                        });
                    </script>
              <?php ?>

Change "US" to the code of your single country.

Regards

Igirus

  • Newbie
  • *
  • Posts: 20
Re: Search country option off - can't choice the city (OsclassWizards)
« Reply #2 on: February 01, 2016, 05:44:53 pm »
Teseo you are the best!

dhickey

  • Newbie
  • *
  • Posts: 1
Re: Search country option off - can't choice the city (OsclassWizards)
« Reply #3 on: February 24, 2016, 02:04:46 am »
Hi,

osclasswizards/header.php:

Replace this block:

Code: [Select]
              <?php if($showCountry) { ?>
              <div class="col-md-2">
                <div class="cell selector">
                  <?php osclasswizards_countries_select('sCountry''sCountry'__('Select a country'OSCLASSWIZARDS_THEME_FOLDER));?>
                </div>
              </div>
              <?php ?>

with:

Code: [Select]
              <?php if($showCountry) { ?>
              <div class="col-md-2">
                <div class="cell selector">
                  <?php osclasswizards_countries_select('sCountry''sCountry'__('Select a country'OSCLASSWIZARDS_THEME_FOLDER));?>
                </div>
              </div>
              <?php } else { ?>
                    <input type="hidden" id="sCountry" name="sCountry" value="US"/>
                    <script type="text/javascript">
                        $(window).load(function(){
                            $("#sCountry").change();
                        });
                    </script>
              <?php ?>

Change "US" to the code of your single country.

Regards


Thank you so much!  8)