how can i show cities in responsive mode like stela on search page and post item page ?
there is a simple way, in inc.search.php
original:
<div class="col2">
<div class="box">
<div id="location-picker" class="loc-picker ctr-<?php echo (bet_count_countries() == 1 ? 'one' : 'more'); ?>">
<div class="mini-box">
<input type="text" id="term2" class="term2" placeholder="<?php _e('Location', 'beta'); ?>" value="<?php echo bet_get_term(Params::getParam('term'), Params::getParam('sCountry'), Params::getParam('sRegion'), Params::getParam('sCity')); ?>" autocomplete="off" readonly/>
<i class="fa fa-angle-down"></i>
</div>
<div class="shower-wrap">
<div class="shower" id="shower">
<?php echo bet_locbox_short(); ?>
change to:
<div class="col2">
<div class="row">
<div id="location-picker" class="loc-picker ctr-<?php echo (bet_count_countries() == 1 ? 'one' : 'more'); ?>">
<input type="text" name="term" id="term" class="term" placeholder="<?php _e('Città ', 'beta'); ?>" value="<?php echo bet_get_term(Params::getParam('term'), bet_ajax_country(), bet_ajax_region(), bet_ajax_city()); ?>" autocomplete="off"/>
<div class="shower-wrap">
<div class="shower" id="shower">
<?php echo bet_def_location(); ?>