How to change Regions to Countries on Homepage Sidebar
« on: June 29, 2026, 05:19:57 PM »
Below is the current code for sigma theme locations sidebar. How do I change the regions to show countries? I tried using a similar change for using cities but it didn't work.

  <div id="home-regs">
    <h2><?php _e('All locations', 'sigma'); ?></h2>

    <div class="wrap">
      <?php $regions = RegionStats::newInstance()->listRegions('%%%%', '>', 'i_num_items DESC'); ?>

      <?php $i = 1; ?>
      <?php foreach($regions as $r) { ?>
        <?php if($i <= 20) { ?>
          <div><a href="<?php echo osc_search_url(array('page' => 'search', 'sRegion' => $r['pk_i_id']));?>"><i class="fas fa-location-arrow"></i> <span><?php echo $r['s_name']; ?></span> <em>(<?php echo $r['i_num_items']; ?>)</em></a></div>
          <?php $i++; ?>
        <?php } ?>
      <?php } ?>

    </div>
  </div>
</div>

Marked as best answer by frosticek on July 11, 2026, 09:54:56 PM
*

MB Themes

Re: How to change Regions to Countries on Homepage Sidebar
« Reply #1 on: June 30, 2026, 03:42:43 PM »
Try this
Code: [Select]
<div id="home-regs">
  <h2><?php _e('All locations''sigma'); ?></h2>

  <div class="wrap">
    <?php $countries CountryStats::newInstance()->listCountries('>''items DESC'); ?>

    <?php $i 1?>
    <?php foreach($countries as $c) { ?>
      <?php if($i <= 20) { ?>
        <div><a href="<?php echo osc_search_url(array('page' => 'search''sCountry' => $c['country_code'])); ?>"><i class="fas fa-location-arrow"></i> <span><?php echo $c['country_name']; ?></span> <em>(<?php echo $c['items']; ?>)</em></a></div>
        <?php $i++; ?>
      <?php ?>
    <?php ?>

  </div>
</div>

Anyway, generally for countries, use of stats class may not be needed.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Re: How to change Regions to Countries on Homepage Sidebar
« Reply #2 on: July 11, 2026, 05:38:02 AM »
This code worked perfectly- and I can see where I made my error when I tried modifying it. Thanks!

*

MB Themes

Re: How to change Regions to Countries on Homepage Sidebar
« Reply #3 on: July 11, 2026, 09:55:12 PM »
Great  ;)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots