nathani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Screen Options Menu Not Appearing on Edit Posts/PagesI forgot…
There is a change in the webpage URL when I click on either the Screen Options or Help tabs (though the drop-down menues don’t appear). Examples are:
Original Edit Post URL – http://www.strategydriven.com/wp-admin/post.php?post=11129&action=edit
Screen Options Edit Post URL – http://www.strategydriven.com/wp-admin/post.php?post=11129&action=edit#screen-options
Help Edit Post URL – http://www.strategydriven.com/wp-admin/post.php?post=11129&action=edit#contextual-help
Again, any help is greatly appreciated!
All the Best,
NathanForum: Fixing WordPress
In reply to: Screen Options Menu Not Appearing on Edit Posts/PagesThanks, esmi.
I have performed the recommended procedure in the Troubleshooting WordPress 3.1 – Master List and still have the same problem. Namely:
– Manually installed WordPress 3.1.1 (did the update)
– All plugins deactivated (and left them deactivated)
– Changed to the Twenty Ten theme
– Reset the pluginsI still cannot access the Screen Options dropdown for the Edit Posts and Edit Pages administrative pages and have lost most of the field boxes that are present in the Add Posts and Add Pages screens.
Additionally, I have added the code:
// Change what’s hidden by default
add_filter(‘default_hidden_meta_boxes’, ‘be_hidden_meta_boxes’, 10, 2);
function be_hidden_meta_boxes($hidden, $screen) {
if ( ‘post’ == $screen->base || ‘page’ == $screen->base )
$hidden = array(‘slugdiv’, ‘trackbacksdiv’, ‘postexcerpt’, ‘commentstatusdiv’, ‘commentsdiv’, ‘authordiv’, ‘revisionsdiv’);
// removed ‘postcustom’,
return $hidden;
}to my theme’s functions.php file as recommended and this also does not work.
Any additional suggestions regarding options I should pursue are greatly appreciated.
All the Best,
Nathan