How to show popular city of items published
« on: August 15, 2018, 01:45:02 AM »
Hello,
Is there a way to make veronika display popular city of published ads at the footer

*

MB Themes

Re: How to show popular city of items published
« Reply #1 on: August 15, 2018, 08:25:56 AM »
You have this in footer.php:
Code: [Select]
      <div class="location">
        <?php $regions RegionStats::newInstance()->listRegions('%%%%''>''i_num_items DESC'); ?>
        <?php $i 1?>
        <?php foreach($regions as $r) { ?>
          <?php if($i <= 12) { ?>
            <span class="region-span"><a href="<?php echo osc_search_url(array('page' => 'search''sRegion' => $r['pk_i_id']));?>"><?php echo $r['s_name']; ?></a></span>
            <?php $i++; ?>
          <?php ?>
        <?php ?>
      </div>

You may try to change it into:
Code: [Select]
      <div class="location">
        <?php $regions CityStats::newInstance()->listCities('%%%%''>''i_num_items DESC'); ?>
        <?php $i 1?>
        <?php foreach($regions as $r) { ?>
          <?php if($i <= 12) { ?>
            <span class="region-span"><a href="<?php echo osc_search_url(array('page' => 'search''sCity' => $r['pk_i_id']));?>"><?php echo $r['s_name']; ?></a></span>
            <?php $i++; ?>
          <?php ?>
        <?php ?>
      </div>

But I would say some adjustments may be required
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Re: How to show popular city of items published
« Reply #2 on: August 15, 2018, 09:28:30 AM »
I changed it but no city displayed at footer. What adjustment do i need to make

*

MB Themes

Re: How to show popular city of items published
« Reply #3 on: August 15, 2018, 09:29:25 AM »
Check CityStats on it's functions and how to use them.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Re: How to show popular city of items published
« Reply #4 on: August 15, 2018, 04:39:10 PM »
Pls dont be annoyed. Where can i get details of how to use it. So i can read and do accordingly

*

MB Themes

Re: How to show popular city of items published
« Reply #5 on: August 15, 2018, 07:08:10 PM »
This class is in oc-includes/osclass/classes
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Re: How to show popular city of items published
« Reply #6 on: August 15, 2018, 09:50:33 PM »
Ok thank you