Osclass forums
Support forums => Themes => Bender => Topic started by: Sphinx on September 16, 2013, 07:04:17 pm
-
Hi everyone!
I wanto to know why Bender theme don't show countrys in the sidebar??? Rigth now only showing cities names. I just having a wrong setting problem or I will need to add some code to the theme for doing this???
Thank's in advance.
http://demaquinasyherramientas.com/shop
-
For default, Bender theme only showing regions with contain ads, take a look at main.php
<?php if(osc_count_list_regions() > 0 ) { ?>
<h3><strong><?php _e("Location", 'bender') ; ?></strong></h3>
<ul>
<?php while(osc_has_list_regions() ) { ?>
<li><a href="<?php echo osc_list_region_url(); ?>"><?php echo osc_list_region_name() ; ?> <em>(<?php echo osc_list_region_items() ; ?>)</em></a></li>
<?php } ?>
</ul>
<?php } ?>
and if you want to show country, follow step by step at this thread http://forums.osclass.org/tips-and-tricks/(tuturial)show-all-regions-and-cities-in-sidebar/ good luck :)
-
Thank's Strata, i will reed all link you give me to learn how to do it. Thank's. :)
-
You're welcome ;D