• I posted previously about how to make all tabs close by default
    the code I used in another post does not work in the latest version 0.8.8
    to fix this you need to edit the tabs.js located in wp-ui/js/select

    on line 150

    if ( this.o.collapsibleTabs ) {
    	options.collapsible = true;
    	}

    to this

    if ( this.o.collapsibleTabs ) {
    	options.collapsible = true;
    	options.active = false;
    	}

    for some reason they changed the code to option.active = false;

    https://www.ads-software.com/plugins/wp-ui/

  • The topic ‘tabs closed by default UPDATE’ is closed to new replies.