Opened 13 years ago
Closed 13 years ago
#19438 closed defect (bug) (wontfix)
Add option to dismiss all feature pointers
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.3 |
Component: | Administration | Keywords: | |
Focuses: | Cc: |
Description
Feature pointers are a nice way to say what's new. Unfortunately they will quickly became boring when someone has to manage many blogs, which were recently upgraded to new WP version. Therefore I ask for new link "Dismiss all".
Change History (3)
#2
@
13 years ago
I'm not really down with this one. If someone is doing a bunch of sites and is getting annoyed, they can remove them with code before logging in.
#3
@
13 years ago
- Keywords needs-patch removed
- Milestone Awaiting Review deleted
- Resolution set to wontfix
- Status changed from new to closed
Agree with Jane; this is not something that deserves an option in the UI.
Here's the code that will disable the pointers entirely:
add_action( 'admin_init', function() { remove_action( 'admin_enqueue_scripts', array( 'WP_Internal_Pointers', 'enqueue_scripts' ) ); } );
Would be nice to have a more "official" way of doing it.
Note: See
TracTickets for help on using
tickets.
Update: as an alternative, you can add a check box "do not show other feature pointers" in FP box.