Hi, I use your plugin to effect the settings for all users, except admin. Well, my user is admin, today I logged in, all settings effect now me too and I can’t change anything.
Disabled the plugin on ftp server, ok, I have access again, but not for your plugin, if I activate again, I can’t change the options.
I don’t wanna loose all the settings on your plugin, there are a lot of customized things, is there any way to access the plugin with a user, to change the settings again? ty
When the plugin is activated, it wraps almost the complete WordPress user interface (backend) in a strong-tag.
Normal structure (plugin deactivated):
<div id="wpwrap">
<div id="adminmenumain"> ... </div>
ALL THE REST
</div>
The plugin wraps ALL THE REST in a strong-tag with a strange id:
<div id="wpwrap">
<div id="adminmenumain"> ... </div>
<strong id="</a">
ALL THE REST
</strong>
</div>
The main downside to this is that, when editing posts, all the post’s text looks bold, and bold vs non-bold is not distinguishable in the editor (it looks normal on the frontend)
I cannot find a setting anywhere to prevent this. Any help would be appreciated.
]]>Hello! I’m using Admin Menu, but some pages are showing a “no permission” error. The user has the necessary capabilities. When I deactivate the plugin, the user can access the pages as usual.
I already changed the capability to “read” in the advanced settings, but nothing changed.
Thanks in advance.
]]>Hi, I’ve installed your free version of the plugin and have turned off some of the admin menu items here /wp-admin/admin.php?page=wpcai_admin_menu. However, I’m still seeing all items in the admin bar..?
Is there something else I need to do to activate my customisations?
Also, in the free version will any changes I make be applied to my user profile only, or for everyone who has admin access?
Thanks so much
]]>Hello Martin,
This is related to the Pro version. I don’t know if it’s also relevant for the free version.
The Plugin Update Checker, a third-party lib you are using, is causing an issue. It might need updating. Latest Puc Version is 5.4
Deprecated: Creation of dynamic property Puc_v4p11_Plugin_Info::$message is deprecated in
{site_path}/wp-content/plugins/custom-admin-interface-pro/inc/library/plugin-update-checker/Puc/v4p11/Metadata.php on line 47
Deprecated: Creation of dynamic property Puc_v4p11_Plugin_Info::$request_time_elapsed is deprecated in {site_path}/wp-content/plugins/custom-admin-interface-pro/inc/library/plugin-update-checker/Puc/v4p11/Metadata.php on line 47
Regards
1. It looks like there are new menu items that have been added to the top toolbar called “false”. I see 4 of them. 2 are visible but empty and 2 are invisible and acting as top tier items that affect the visibility and spacing of other items so I can’t hide or move them.
Screenshot: https://postimg.cc/fV0rhQ8Y
Screenshot: https://postimg.cc/WDnZtS8X
2. There are several items that aren’t matching up either. EG: Admin notices plugin is showing nested under my username in custom admin interface but it’s actually a top level item in the toolbar. Litespeed cache is showing in the toolbar but missing from custom admin interface so I can’t move or hide it.
3. My site by default links to the dashboard when I’m on the front end and my home page when I’m in the back end. That’s no longer the case. It’s linking to the home page regardless of what page I’m on.
]]>Menu won’t load. I tried clicking on one of the options (eg: add separator, add menu item, restore default settings etc…), and I get a notification “please wait while we save your settings” and then another “settings have been saved” but nothing actually happens. All other menus appear to loading just fine.
I see this has been reported by several people over the last few weeks and appears to be a conflict with Woocommerce. I do have Woo installed.
Screenshot: https://paste.pics/RA86E
PHP Version: 8.1.29
WordPress Version: 6.5.5
Plugin Version: 7.36
Current Theme: Hello Elementor Child
Active Plugins:
Admin Notices Manager
Advanced Custom Fields
Advanced Free - Flat shipping WooCommerce
FiboSearch - AJAX Search for WooCommerce
AltText.ai
Activity Log
Bulky - Bulk Edit Products for WooCommerce
FunnelKit Cart for WooCommerce
Classic Editor
Conditional extra fees for WooCommerce
CookieYes | GDPR Cookie Consent
Custom Payment Gateways for WooCommerce
Custom Taxonomy Order
Decorator - WooCommerce Email Customizer
Defender
Fluent Snippets
Elementor Pro
Elementor
Filter Everything �� WooCoomerce Product & WordPress Filter
Gallery Slider for WooCommerce
HappyFiles Pro
Independent Analytics
LiteSpeed Cache
LoginPress
Plerdy
Post SMTP
Route App
Rank Math SEO
ShopMagic for WooCommerce
Simple Cloudflare Turnstile
Usermaven
Wallet Up
Checkout with Cash App on WooCommerce
WEmanage App Worker
White Label CMS
White Label
Woo Custom Gateway
WooCommerce Custom Product Addons Free
Manually Approved Reviews for WooCommerce
WooCommerce Legacy REST API
PDF Invoices & Packing Slips for WooCommerce
WooCommerce Shipping & Tax
WooCommerce
WP Custom Admin Interface
WPC Free Shipping Bar for WooCommerce
WPvivid Plugins Pro
WPvivid Backup Plugin
WPvivid Imgoptim Free
Related Products for WooCommerce
Sequential Order Numbers for WooCommerce
]]>
Using Ultimate Member, I created a user called SoundtracksManager, with role Soundtracks Manager. This user should ONLY be able to view/edit/create users with the role SoundtracksUser, however, this user and assign any role to any user. How can I fix this?
]]>Hello! WP Custom Admin Interface plugin fails to show the menu to edit in the “Edit Admin Menu” tab. The console logs indicate an issue with malformed URIs during the decoding process.
Console Error:
Uncaught URIError: URI malformed
at decodeURIComponent ()
at renderAdminMenuManager (options-page-admin-menu.js?ver=7.36:223:54)
at HTMLDocument. (options-page-admin-menu.js?ver=7.36:242:5)
at e (load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.5.4:2:27028)
at t (load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.5.4:2:27330)
Analysis:
It seems that the error URIError: URI malformed
occurs when decodeURIComponent
is called on a string that is not a valid URI. The specific line causing the issue is:
223:var subLevelMenuThirdValue = decodeURIComponent(subLevelObject[key][3]);
Upon investigation, it was found that some values being passed to decodeURIComponent
are not URIs but plain text or HTML, such as:
Upgrade For 80% Off! <a target="_blank">Upgrade For 80% Off!</a>
In this case the issue is caused by additional submenu promo-link from WPMU Defender plugin.
Proposed quick-fix:
function isValidURI(uri) { return uri.startsWith('https://') || uri.startsWith('https://') || uri.startsWith('ftp://') || uri.startsWith('mailto:'); } function safeDecodeURIComponent(uri) { if (typeof uri !== 'string' || !isValidURI(uri)) { return uri; // Return the original string if it is not a valid URI } try { return decodeURIComponent(uri); } catch (e) { return uri; // Handle the error gracefully } }
Further analysis and final solution required.
Regards!
]]>Hi
The plugin seems to conflict with WooCommmerce.
On sites where I have WP Custom Admin Interface and WooCommmerce enabled I can’t see/control any menu items in the list here admin.php?page=wpcai_admin_menu – I’ve tried resetting the settings, restoring defaults etc
I’ve tried this on a few different sites, with different themes and get the same result on them all.
If I disable WooCommerce then the menu items appear and can be controlled.
I’ve seen numerous people with the same issue in the support forum and the reviews.
Appreciate any help
Adam
]]>Hi there,
I am having an issue with “hide meta” option not showing any options. It is pulling the headings but no settings are available. I have deativated all plugins and the issue persists. Please see screenshot:
Is this issue on my end or is it due to plugin being out of date?
]]>Hii Team,
I Installed WP Custom Admin Interface plugin but admin menu is not working. Even Default admin menu is not visible
I think there might be some java script error :
Log from google console:
load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:5 JQMIGRATE: Migrate is installed, version 3.4.1
admin.php:2240 Third-party cookie will be blocked. Learn more in the Issues tab.
admin.php:2240 Third-party cookie will be blocked. Learn more in the Issues tab.
load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2 jQuery.Deferred exception: Cannot read properties of null (reading 'indexOf') TypeError: Cannot read properties of null (reading 'indexOf')
at removeNotificationsFromLabels (https://realmydomain.com/wp-content/plugins/wp-custom-admin-interface/inc/options/options-page-admin-menu.js?ver=7.34:169:37)
at renderAdminMenuManager (https://realmydomain.com/wp-content/plugins/wp-custom-admin-interface/inc/options/options-page-admin-menu.js?ver=7.34:218:49)
at HTMLDocument.<anonymous> (https://realmydomain.com/wp-content/plugins/wp-custom-admin-interface/inc/options/options-page-admin-menu.js?ver=7.34:240:5)
at e (https://realmydomain.com/wp-admin/load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2:27028)
at t (https://realmydomain.com/wp-admin/load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2:27330) undefined
ce.Deferred.exceptionHook @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
t @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
setTimeout (async)
(anonymous) @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
c @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fireWith @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fire @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
c @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fireWith @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
ready @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
P @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2 Uncaught TypeError: Cannot read properties of null (reading 'indexOf')
at removeNotificationsFromLabels (options-page-admin-menu.js?ver=7.34:169:37)
at renderAdminMenuManager (options-page-admin-menu.js?ver=7.34:218:49)
at HTMLDocument.<anonymous> (options-page-admin-menu.js?ver=7.34:240:5)
at e (load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2:27028)
at t (load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2:27330)
removeNotificationsFromLabels @ options-page-admin-menu.js?ver=7.34:169
renderAdminMenuManager @ options-page-admin-menu.js?ver=7.34:218
(anonymous) @ options-page-admin-menu.js?ver=7.34:240
e @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
t @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
setTimeout (async)
ce.readyException @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
(anonymous) @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
e @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
t @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
setTimeout (async)
(anonymous) @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
c @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fireWith @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fire @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
c @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fireWith @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
t @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
setTimeout (async)
(anonymous) @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
c @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fireWith @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fire @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
c @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
fireWith @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
ready @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
P @ load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3:2
Please check and Help.
Screenshot : https://paste.pics/3c4f0139481d853fb8b2db46db03576a
Let me know, If site access is required to check, Please give your mail ID Will send you temporary access to the site on mail.
]]>Hi,
I have installed plugin and enabled selected menus, However I have chosen SureCart to show to admins in a restricted menu , the title shows for the plugin, but all sub menus apart from forums is showing, I have made sure they are selected with the eye unshaded but they don’t show.
]]>Hello! use plugin a lot to create menu for basic users,
But now I have this problem.
Only when I deactivate the woocommerce plugin can I reestablish the menu, I could add new elements but when I create links that have to do with woocommerce it does not allow access to that section it says: Sorry, you do not have permissions to access this page.
I’ve installed the free plugin and just want to reorder a few admin menu items. I’ve dragged them into the order I want, and at the bottom I’ve chosen Implement this for Everyone and Show notification icons on custom menu, then I hit save all settings. It’s been spinning for about a half hour and will not save. Any suggestions?
]]>Hey, I’ve created a new menu using the “Admin Menu” section. I’ve restricted a lot of the sections for one of the roles.
I’ve left it a custom plugin visible but when I go to view it, it says you don’t have permission so I’ve enabled advance functionality. I’ve changed the capabilities on the plugin so now the options show in the sidebar – however when I click on it, it now says cannot load ‘pluginname’
What am I missing?
Cansado de intentar solucionar errores con la versi��n PRO y que de paso veo que no actualiza a la ��ltima versi��n de WP.
As�� que no renovarmos. Gracias Martin por tenernos abandonados.
Tired of trying to solve errors with the PRO version and in the process I see that it does not update to the latest version of WP.
So we didn’t renew. Thanks Martin for having us abandoned.
]]>Hi Martin,
Tobias here, developer of TablePress. Could you please take a look at this issue: https://www.ads-software.com/support/topic/critical-error-unable-to-access-tables/#post-17170900 ?
Your plugin is echo
ing here, instead of return
ing a string (as this is a filter hook handler function), which causes problems for all plugins that also hook into the admin_footer_text
filter hook (like TablePress). It would be great if you could fix this in the next update. Thanks a lot!
If anything is unclear, please don’t hesitate to get in touch! Thanks!
Regards,
Tobias
Hello Team,
Nice but does not visible and customize the admin menu
Screenshot URL – https://prnt.sc/9VVcIFJKcPCo
Any thoughts
Mohammed
]]>Hi guys,
We’ve setup an admin menu for a user however when they try and access a Forminator form they get a “Your not allowed to access this page” message even though Forminator is available to them.
Any thoughts
Eoin
]]>Just installed on a multisite. When going to Custom Admin Interface > Admin Toolbar, the page appears but never stops loading and I cannot click on anything in the backend.
]]>Hi,
We’ve been using the WP Custom Admin Interface plugin to reduce the length of the admin menu for administrator users.
The site also uses the Wholesale Suite plugins, which adds a ‘Wholesale’ option to the admin menu.
WPCAI recognises the menu and it can be added, however one of the submenu items, ‘Roles’ doesn’t work.
With the plugin enabled, the admin user is shown a ‘Sorry, you are not allowed to access this page.’ error message. With WPCAI deactivated, the page works as expected.
Curiously, our main agency administrator account does not encounter this issue, but all other administrator users (clients) on the site experience this problem. Is it normal for WPCAI to not apply it’s settings across all administrator users? Would be curious to know how this works.
Thanks!
Please consider improving the functionality of dragging and dropping and reordering items. I’m talking about my experience of customizing the admin menu. Now, if there are many sub-items in an item, then dragging and dropping is very inconvenient, especially if the item is somewhere from the bottom and I want to place it higher.
Also, if I install a new plugin and click on the add new items button, only new items of higher order are added. If the plugin only adds a sub-item to an existing menu, it does not appear. Also, items that are no longer relevant after uninstalling the plugin do not disappear and it is not clear how to remove them.
]]>Hello,
I want to add an link to an external page to the WP menu. The link is no problem, but how can I set the target to _blank so the WP-backend remains open?
Best regards
Uli
]]>Please update the plugin it is showing not tested with the current version of WordPress … and it is not showing any menu even
]]>I removed an admin menu item and now I am unable to access the WPCAI Settings for the sidebar. It says I do not have authorization to view this page. I am an admin user. How can I reset the plugin and all the settings? I have access to PHPmyadmin
]]>in the page:
wp-admin/admin.php?page=wpcai_admin_menu
for “manage WP Admin Menu”
it’s possibile add “target blank” in a single voice of menu links?
Thank you!
]]>Hi:
Ask the submenu how to change the language
because it is a path alias
Can’t change language
//call a function which generates sub page settings
wp-content\plugins\wp-custom-admin-interface\wp-custom-admin-interface.php 36…
wp_custom_admin_interface_subpage_menu_generator(‘General Settings’);
wp_custom_admin_interface_subpage_menu_generator(‘Custom Code’);
wp_custom_admin_interface_subpage_menu_generator(‘Custom Code Frontend’);
……
thank you!
Hello,
I have a Turkish font problem in the admin panel of my e-commerce site where only WooCommerce and Custom Admin Interface plugin are active.
After disabling the Custom Admin Interface plugin, the fonts return to normal.
Can you help me please?
Plugin Page: https://i.hizliresim.com/q396sra.jpg
Where the error is: https://i.hizliresim.com/7bomxj8.jpg
Site Information: https://shrib.com/#Arianna8zZ8QqA
]]>When plugin is deactivated all is well and working. But when plugin is activated admin gets the subscriber dashboard and plugins are not accessible to edit. Is there another way to edit the plugin settings?
]]>