Version Description
- Fixed a conflict with Media Ace, Snax and "What's Your Reaction?" plugins where activating Admin Menu Editor would cause a number of previously hidden menu items become visible.
- Tested up to WP 5.4.
Download this release
Release Info
Developer | whiteshadow |
Plugin | Admin Menu Editor |
Version | 1.9.5 |
Comparing to | |
See all releases |
Code changes from version 1.9.4 to 1.9.5
- includes/menu-editor-core.php +43 -1
- menu-editor.php +1 -1
- readme.txt +6 -2
includes/menu-editor-core.php
CHANGED
@@ -246,7 +246,49 @@ class WPMenuEditor extends MenuEd_ShadowPluginFramework {
|
|
246 |
'admin.php?page=WPCW_showPage_UserProgess' => true,
|
247 |
'admin.php?page=WPCW_showPage_UserProgess_quizAnswers' => true,
|
248 |
//Extended Widget Options
|
249 |
-
'index.php?page=extended-widget-opts-getting-started'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
);
|
251 |
|
252 |
//AJAXify screen options
|
246 |
'admin.php?page=WPCW_showPage_UserProgess' => true,
|
247 |
'admin.php?page=WPCW_showPage_UserProgess_quizAnswers' => true,
|
248 |
//Extended Widget Options
|
249 |
+
'index.php?page=extended-widget-opts-getting-started' => true,
|
250 |
+
//Snax
|
251 |
+
'options-general.php?page=snax-pages-settings' => true,
|
252 |
+
'options-general.php?page=snax-lists-settings' => true,
|
253 |
+
'options-general.php?page=snax-quizzes-settings' => true,
|
254 |
+
'options-general.php?page=snax-polls-settings' => true,
|
255 |
+
'options-general.php?page=snax-stories-settings' => true,
|
256 |
+
'options-general.php?page=snax-memes-settings' => true,
|
257 |
+
'options-general.php?page=snax-audios-settings' => true,
|
258 |
+
'options-general.php?page=snax-videos-settings' => true,
|
259 |
+
'options-general.php?page=snax-images-settings' => true,
|
260 |
+
'options-general.php?page=snax-galleries-settings' => true,
|
261 |
+
'options-general.php?page=snax-embeds-settings' => true,
|
262 |
+
'options-general.php?page=snax-voting-settings' => true,
|
263 |
+
'options-general.php?page=snax-limits-settings' => true,
|
264 |
+
'options-general.php?page=snax-auth-settings' => true,
|
265 |
+
'options-general.php?page=snax-moderation-settings' => true,
|
266 |
+
'options-general.php?page=snax-embedly-settings' => true,
|
267 |
+
'options-general.php?page=snax-demo-settings' => true,
|
268 |
+
'index.php?page=snax-about' => true,
|
269 |
+
'options-general.php?page=snax-collections-settings' => true,
|
270 |
+
'options-general.php?page=snax-links-settings' => true,
|
271 |
+
'options-general.php?page=snax-extproduct-settings' => true,
|
272 |
+
'options-general.php?page=snax-slog-settings' => true,
|
273 |
+
'options-general.php?page=snax-slog-networks-settings' => true,
|
274 |
+
'options-general.php?page=snax-slog-locations-settings' => true,
|
275 |
+
'options-general.php?page=snax-slog-log-settings' => true,
|
276 |
+
'options-general.php?page=snax-slog-gdpr-settings' => true,
|
277 |
+
'options-general.php?page=snax-shares-settings' => true,
|
278 |
+
'options-general.php?page=snax-shares-positions-settings' => true,
|
279 |
+
//Media Ace
|
280 |
+
'options-general.php?page=mace-image-bulk-settings' => true,
|
281 |
+
'options-general.php?page=mace-lazy_load-settings' => true,
|
282 |
+
'options-general.php?page=mace-watermarks-settings' => true,
|
283 |
+
'options-general.php?page=mace-hotlink-settings' => true,
|
284 |
+
'options-general.php?page=mace-gif-settings' => true,
|
285 |
+
'options-general.php?page=mace-auto-featured-image-settings' => true,
|
286 |
+
'options-general.php?page=mace-expiry-settings' => true,
|
287 |
+
'options-general.php?page=mace-video-settings' => true,
|
288 |
+
'options-general.php?page=mace-gallery-settings' => true,
|
289 |
+
'options-general.php?page=mace-general-settings' => true,
|
290 |
+
//"What's Your Reaction"
|
291 |
+
'options-general.php?page=wyr-fakes-settings' => true,
|
292 |
);
|
293 |
|
294 |
//AJAXify screen options
|
menu-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Admin Menu Editor
|
4 |
Plugin URI: http://w-shadow.com/blog/2008/12/20/admin-menu-editor-for-wordpress/
|
5 |
Description: Lets you directly edit the WordPress admin menu. You can re-order, hide or rename existing menus, add custom menus and more.
|
6 |
-
Version: 1.9.
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
*/
|
3 |
Plugin Name: Admin Menu Editor
|
4 |
Plugin URI: http://w-shadow.com/blog/2008/12/20/admin-menu-editor-for-wordpress/
|
5 |
Description: Lets you directly edit the WordPress admin menu. You can re-order, hide or rename existing menus, add custom menus and more.
|
6 |
+
Version: 1.9.5
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
*/
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: whiteshadow
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: admin, dashboard, menu, security, wpmu
|
5 |
Requires at least: 4.1
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.9.
|
8 |
|
9 |
Lets you edit the WordPress admin menu. You can re-order, hide or rename menus, add custom menus and more.
|
10 |
|
@@ -63,6 +63,10 @@ Plugins installed in the `mu-plugins` directory are treated as "always on", so y
|
|
63 |
|
64 |
== Changelog ==
|
65 |
|
|
|
|
|
|
|
|
|
66 |
= 1.9.4 =
|
67 |
* Fixed another warning about get_magic_quotes_gpc() being deprecated in PHP 7.4. This instance was missed in the previous patch.
|
68 |
* Added a workaround for an issue with MailPoet 3 where some menu settings didn't work on MailPoet's admin pages.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: admin, dashboard, menu, security, wpmu
|
5 |
Requires at least: 4.1
|
6 |
+
Tested up to: 5.4
|
7 |
+
Stable tag: 1.9.5
|
8 |
|
9 |
Lets you edit the WordPress admin menu. You can re-order, hide or rename menus, add custom menus and more.
|
10 |
|
63 |
|
64 |
== Changelog ==
|
65 |
|
66 |
+
= 1.9.5 =
|
67 |
+
* Fixed a conflict with Media Ace, Snax and "What's Your Reaction?" plugins where activating Admin Menu Editor would cause a number of previously hidden menu items become visible.
|
68 |
+
* Tested up to WP 5.4.
|
69 |
+
|
70 |
= 1.9.4 =
|
71 |
* Fixed another warning about get_magic_quotes_gpc() being deprecated in PHP 7.4. This instance was missed in the previous patch.
|
72 |
* Added a workaround for an issue with MailPoet 3 where some menu settings didn't work on MailPoet's admin pages.
|