Hi JoelSTK
You can open this file:
/templates/ja_rent/html/com_vikrentcar/carslist/default.php
Look for this snippet of code:
<div class="gridlist">
<span>View</span>
<div class="view">
<a href="javascript:void(0)" id="list" class="active"><i class="fa fa-th-list"></i></a>
<a href="javascript:void(0)" id="grid" ><i class="fa fa-th icon-white"></i></a>
</div>
</div>
change it to:
<div class="gridlist">
<span>View</span>
<div class="view">
<!-- <a href="javascript:void(0)" id="list" class="active"><i class="fa fa-th-list"></i></a> -->
<a href="javascript:void(0)" id="grid" class="active"><i class="fa fa-th icon-white"></i></a>
</div>
</div>
In case that you want to hide that view selection also, you can use this custom css:
.com_vikrentcar.view-carslist .vrc-search-results-block.vrc-search-results-grid .gridlist {
display: none;
}
put into the file: /templates/ja_rent/css/custom.css (Create this file if it doesn't exist)