graynotgrey
Member
Posted 1 year ago #
I am running 3.1 R3 on a multisite network of 28 sites and growing. I like the Adminbar because it makes traversing the various sites back and front ends much easier. However, I can only access the first 25 sites from the drop down menu. Otherwise, I have to go to the dashboard, select My Sites and select from the list.
hi,
I ain't gonna start a new topic because this is exactly my issue (WordPress 3.3.1)...
(or should I, as this forum is the Alpha/Beta?)
also, I seem to remember seeing this problem being discussed in another thread, but really can't find it...
...it is just me, or the search capabilities of the forum are a pain in the arse?
graynotgrey
Member
Posted 4 months ago #
I have upgraded to 3.3.1 as well and the problem still persists. It's not just you, the search capabilities on this forum can be wanting at times
Did a deep research and found this
http://core.trac.wordpress.org/ticket/15317
(apparently, the issue was moved to version 3.4)
there's a suggestion there that provides a half solution, and I implemented like this:
function custom_my_sites() {
echo '<style type="text/css">
#wp-admin-bar-my-sites-list {
max-height: 500px;
overflow-y: scroll;
}
</style>';
}
add_action('admin_head', 'custom_my_sites');
the only caveat is that the submenus don't show up, although if you use the keyboard right-arrow you can access them