1. Default page template
Go to templates/property_page_acc_content.php file
Add class “collapsed” to the link below
<a data-toggle=”collapse” data-parent=”#accordion_prop_addr” href=”#collapseTwo” >
becomes
<a data-toggle=”collapse” data-parent=”#accordion_prop_details” href=”#collapseOne” aria-expanded=”false” class=”collapsed”>
_______________
On the h4 element add the class “carusel_closed”
<h4 class=”panel-title”>
becomes
<h4 class=”panel-title carusel_closed”>
_____________________________
Remove class “in” on the div
<div id=”collapseTwo” class=”panel-collapse collapse in”>
becomes
<div id=”collapseTwo” class=”panel-collapse collapse”>
2. Custom page template
Go to libs\listing_functions.php file – function estate_floor_plan and for $show variable change from
$show= ‘ style=”display:block”; ‘;
to
$show= ‘ style=”display:none!important”; ‘;