I am using the accordian in my sidebar. How can I change the default of that wodget from expanded to collapsed?
1 Answers
@lynda: hi , you can go to this file : dw-focus/inc/widgets/dw-accordion-container.php
:
and then go to line : 45 and 46
Change the code there from :
$collapse = ( $i == 0 ) ? 'active' : 'collapsed';
$collapse_in = ( $i == 0 ) ? 'panel-collabse-in' : '';
to :
$collapse = ( $i == 0 ) ? 'collapsed' : 'collapsed';
$collapse_in = ( $i == 0 ) ? 'panel-collabse-in' : 'panel-collabse-in';
or :
$collapse = ( $i == 0 ) ? 'collapsed' : 'collapsed';
$collapse_in = ( $i == 0 ) ? '' : '';
Glad.
Thanks very much.
Please login or Register to submit your answer