Hi,
Please find following code in /wp-content/themes/Travelo/templates/template-home.php file.
<ul class="search-tabs clearfix">
<?php if ( in_array('acc', $enabled_features) ) : ?>
<li <?php if ( $enabled_features[0] == 'acc' ) echo 'class="active"' ?> ><a href="#hotels-tab" data-toggle="tab"><?php _e( 'HOTELS', 'trav' ) ?></a></li>
<?php endif; ?>
<?php if ( in_array('tour', $enabled_features) ) : ?>
<li <?php if ( $enabled_features[0] == 'tour' ) echo 'class="active"' ?> ><a href="#tours-tab" data-toggle="tab"><?php _e( 'TOURS', 'trav' ) ?></a></li>
<?php endif; ?>
<?php if ( in_array('car', $enabled_features) ) : ?>
<li <?php if ( $enabled_features[0] == 'car' ) echo 'class="active"' ?> ><a href="#cars-tab" data-toggle="tab"><?php _e( 'CARS', 'trav' ) ?></a></li>
<?php endif; ?>
<?php if ( in_array('cruise', $enabled_features) ) : ?>
<li <?php if ( $enabled_features[0] == 'cruise' ) echo 'class="active"' ?> ><a href="#cruises-tab" data-toggle="tab"><?php _e( 'CRUISES', 'trav' ) ?></a></li>
<?php endif; ?>
<?php if ( in_array('flight', $enabled_features) ) : ?>
<li <?php if ( $enabled_features[0] == 'flight' ) echo 'class="active"' ?> ><a href="#flights-tab" data-toggle="tab"><?php _e( 'FLIGHTS', 'trav' ) ?></a></li>
<?php endif; ?>
</ul>
You can change order by changing the code.
Best regards,
Ok great!!! thank you.