How to make the advert on the main page is displayed on the location?
need a the city on every admain page
<span class="locationg "><i class="fa fa-map-marker"></i> <?php if ( osc_item_region() && osc_item_city() != null ) { ?><?php echo osc_item_city(); ?>, <?php echo osc_item_region(); ?><?php } ?></span>
.locationg { background: #fff; color: #444; padding: 5px; font-weight: 500; float: left; width: 100%; font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block;}
Quote from: igorman732 on December 04, 2016, 05:47:23 AMneed a the city on every admain pageTry something like this :Code: [Select]<span class="locationg "><i class="fa fa-map-marker"></i> <?php if ( osc_item_region() && osc_item_city() != null ) { ?><?php echo osc_item_city(); ?>, <?php echo osc_item_region(); ?><?php } ?></span>...and some CSS rule e.g. Code: [Select].locationg { background: #fff; color: #444; padding: 5px; font-weight: 500; float: left; width: 100%; font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block;}