Increase visibility of 'Search Engines Blocked' notification in 3.2
-
It’s a shame to see the ‘Search Engines Blocked’ message moved away from the header – there have been a few times when I’ve deployed sites and overlooked unblocking the search engines. When I’ve then returned to the site, the header clearly reminds me of this throughout the backend, and I can solve the issue.
Now, with this new design, it’s not only been relegated to the ‘Right Now’ panel, but it’s not been given any extra weight. In my opinion, it’s an important option and requires an increase in visibility.
Ideally, I’d prefer it to be added back to the header, but otherwise, I’d suggest highlighting it in some manner, like this:
ScreenshotThis at least is quite easy to achieve – for anyone else interested, I added this to my theme’s functions.php:
// 'Search Engines Blocked' Highlighter function rbd_search_engines_blocked() { echo '<style type="text/css"> #dashboard-widgets a[href="options-privacy.php"] { font-weight: bold; color: #FFFFFF; background-color: #CC0000; display: inline-block; padding: 5px 10px; border-radius: 5px; } </style>'; }; add_action('admin_head', 'rbd_search_engines_blocked');
- The topic ‘Increase visibility of 'Search Engines Blocked' notification in 3.2’ is closed to new replies.