Topic: [Hack, v3.0] Auto-open 'page options' (slug, tags, navigation, etc.)
This is a quick hack (not upgrade-safe!) for auto-opening the page options in the page edit section. I am currently setting up a v3.0 beta testing site so having the options for slugs, navigation, etc. open without having to click is a bonus for me. Haven't checked on v2.03.1.
The file to be edited is at /admin/template/js/jquery.getsimple.js, look for the comment
// edit.phpat line number 206 or thereabouts. Right below that comment, insert the following snippet which simply slides open the options and then toggles the state of the button with which you would normally open up the page options.
// START Auto-open page options on edit page load
$("#metadata_window").slideToggle('fast');
$("#metadata_toggle").toggleClass('current');
// STOPMaybe this is helpful for someone else, too. Enjoy.
Download


