Opened 4 months ago

Last modified 3 months ago

#23163 new enhancement

3.6 Network Admin Help Text

Reported by: DrewAPicture Owned by:
Priority: low Milestone: Future Release
Component: Help/About Version:
Severity: normal Keywords: has-patch 3.7-early
Cc: siobhan@…, ipstenu@…

Description (last modified by DrewAPicture)

One of the Doc team's action items for 3.6 is to work on overhauling the Network Admin help tabs, many of which contain outdated and, well, unhelpful information.

Our goals:

  • Focus on writing action vs description-based help text
  • Aim for a consistent voice
  • Pave the way for future Help UI changes in how we structure the information

Any Network Admin screen is fair game but by no means do we intend to change strings just for the sake of change. It was the consensus of the team to focus on this effort earlier in the release cycle than usual so that translators will have plenty of time to work on new strings and provide feedback.

Following some feedback from @nacin, @markjaquith, and @aaroncampbell, it was decided the best format for concatenating help tabs strings should follow this format going forward:

$example_string = '<p>' . __( 'This is some help text' ) . '</p>';
$example_string .= '<p>' . __( 'This is some more help text' ) . '</p>';
 
get_current_screen()->add_help_tab( array(
'id'	=> 'example',
'title'	=> __( 'Example' ),
'content'	=> $example_string
) );

Attachments (3)

23163.diff (2.6 KB) - added by DrewAPicture 4 months ago.
/network/index.php (Dashboard)
23163.1-DJ-SM.diff (2.8 KB) - added by DrewAPicture 3 months ago.
/network/index.php (Dashboard) 2nd pass
23163-sites.diff (3.9 KB) - added by DrewAPicture 3 months ago.
/network/sites.php

Download all attachments as: .zip

Change History (13)

/network/index.php (Dashboard)

  • Keywords has-patch added

23163.diff gets the ball rolling with changes to the main network index help text.

Before:

Overview:

Until WordPress 3.0, running multiple sites required using WordPress MU instead of regular WordPress. In version 3.0, these applications have merged. If you are a former MU user, you should be aware of the following changes:

  • Site Admin is now Super Admin (we highly encourage you to get yourself a cape!).
  • Blogs are now called Sites; Site is now called Network.

The Right Now box provides the network administrator with links to the screens to either create a new site or user, or to search existing users and sites. Screens for Sites and Users are also accessible through the left-hand navigation in the Network Admin section.

After:

Overview:

Welcome to your Network Admin. This area of the Dashboard is used for managing all aspects of your Multisite network.

The menus on the left side allow you to:

  • Add and manage sites or users
  • Install and activate themes or plugins
  • Update your network
  • Modify global network settings

Quick Tasks:

The Right Now widget on this screen provides current user and site counts on your network. New users and sites are easily created by clicking the ‘Create a New Site’ or ‘Create a New User’ links.

You can also search for any user or site in your network by using the search boxes. Users can be searched by entering all or part of a username or email address. Sites are searchable by path or domain, depending on which type of network you have.

Last edited 4 months ago by DrewAPicture (previous) (diff)
  • Cc siobhan@… added
  • Cc ipstenu@… added

23163.1-DJ-SM.diff is a second pass at /network/index.php from Drew & Siobhan.

Overview: http://cl.ly/image/330Y243r2O2q

Quick Tasks: http://cl.ly/image/2g2h3B1Y0x3H

Last edited 3 months ago by DrewAPicture (previous) (diff)
  • Description modified (diff)

/network/index.php (Dashboard) 2nd pass

23163-sites.diff is a first pass at /network/sites.php

sites.php discussion on make/docs

Before:

Tab: Overview

Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.

This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.

Hovering over each site reveals seven options (three for the primary site):

  • An Edit link to a separate Edit Site screen.
  • Dashboard leads to the Dashboard for that site.
  • Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.
  • Delete which is a permanent action after the confirmation screens.
  • Visit to go to the frontend site live.

The site ID is used internally, and is not shown on the front end of the site or to users/viewers.

Clicking on bold headings can re-sort this table.

After:

Tab: Overview

This area of the Administration Screens is used for managing the sites in your Multisite Network.

From here you can:

  • Add, modify or remove sites from your network
  • Search for sites in your network
  • Perform bulk actions on multiple sites at once

Tab: Site Management

The site management screen allows you to modify aspects of one or many of your sites at once.

Hovering over each site reveals seven options (three for the primary site):

  • Clicking Edit takes you to a multi-part settings screen for that site
  • Clicking Dashboard takes you to the Dashboard screen for that site
  • Clicking Deactivate, Archive, or Spam performs the specified action with a confirmation screen
  • Clicking Delete deletes a site from your network, following a confirmation screen
  • Clicking Visit takes you to the front-end view of the site
Last edited 3 months ago by DrewAPicture (previous) (diff)

/network/sites.php

Due to other docs projects taking priority, we've decided to push this to future release.

It would be nice to at least get 23163.1-DJ-SM.diff in and work to getting more screens tackled at a later time.

  • Priority changed from normal to low
  • Type changed from task (blessed) to enhancement

In 23657:

Update Network Dashboard help text. props DrewAPicture, raggedrobins. see #23163.

  • Keywords 3.7-early added
  • Milestone changed from 3.6 to Future Release
Note: See TracTickets for help on using tickets.