codebunny
Forum Replies Created
-
It seems, this is a server config issue. Please, go through this article. https://www.tipsandtricks-hq.com/apache-mod-security-update-how-to-fix-error-406-or-not-acceptable-issue-259
or contact your hosting provider.
If you are still facing the problem, please send me the admin details of your site with URL to [email protected]
I’ll have a look and happy to help you.
Thanks
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] Center align custom menu items links??Add this to custom css text area, if you need to move left menus only,
#wpadminbar .quicklinks ul#wp-admin-bar-root-default{margin-left:300px!important;}or
Add this to custom css text area, if you need to move left & right menus both,
#wpadminbar .quicklinks{width:80%!important;margin:auto!important;}But do not add both codes together.
Thanks.
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] get wp menu to appear on the rightThis plugin adds menus to adminbar and displays them according to the order of freshness.
I suggest,
1) Change again WP / Custom Menu Action Hooks to Before Admin Bar Render2) Create another WP menu and check whether it is placed according to your requirement.
If yes, then remove “Virtual” menu that you created initially.
If it is not working, send me admin details & URL of your site to [email protected]
I’ll have a look and happy to help you.
Thanks.
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] get wp menu to appear on the rightDid you try this ?
Settings–> WPAIO Adminbar –> (Settings Tab)
WP / Custom Menu Action Hooks
Change to Admin Bar MenuFirst you go to Admin area Settings–>BuddyPress–>(Settings tab)
Enable Show the Toolbar for logged out users
After that you can use my plugin to add more custom and WordPress menus to admin bar. Now you can use the admin bar as the primary navigation. And if you do not need your theme primary menu further, you can hide the theme primary menu by using some CSS tricks.
Note: When you hide your theme primary menu, you should add css codes to your themes style.css
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] menu not showing for logged out usersDid you install BuddyPress ? If yes, chack the status of “Show the Toolbar for logged out users” in Settings–>BuddyPress –> Settings tab.
If it is not the reason, send me the admin log in details of your site to [email protected].
Thanks
Add this to your theme js file
$(“#wp-admin-bar-my-account a.ab-item “).first().attr(“href”,”#”);
Thanks
I think you can’t disable the link using this plugin. But, if the purpose of disabling Howdy link is to restrict the admin area for users; then try this
Add this code to functions.php
function restrict_admin()
{
$Path=$_SERVER[‘REQUEST_URI’];
$URI=’http://example.com’.$Path;if (( !current_user_can( ‘manage_options’ )) && ($URI==’http://example.com/wp-admin/’ || $URI==’http://example.com/wp-admin’)) {
wp_redirect( site_url() );
//redirect to front page again
exit;}
}
add_action( ‘admin_init’, ‘restrict_admin’, 1 );You can change ‘http://example.com/wp-admin’ string according to your requirement (that is http://example.com/wp-admin/profile.php) or can apply strops function http://php.net/manual/en/function.strpos.php
Note: This is not working for administrators. try this for subscribers.
Thanks.Forum: Plugins
In reply to: [WordPress All In One Admin Bar] Plugin not working with 4.0You can add WordPress menus to admin bar using this plugin.
First you should create WordPress menus through Appearence –> menus
Next go to Settings –> WPAIO Adminbar page –> WP Menus tab
All WordPress menus you created are displayed in this area.
You can select WP menus and display location as Admin bar.
Note: You should put a suitable label for each menu in Custom Root Lable text field in order to display them in the admin/toolbar.Example :
You have created menu1, menu2, menu3. You can add these all or selected menus to admin bar.According to your text “can I use it to add new menu locations to the WordPress toolbar” what do you mean by this?
If I didn’t understand your requirement, feel free to send me an image, hand drawing sketch, comprehensive document or whatever to [email protected].
I tested only this feature with WP 4.0 while ago (I didn’t have time to check the whole plugin features). It is working to me. Currently I’m working with few individual projects in parallel.
That’s why I said need time to update the plugin. But if you are still in trouble, send me the admin details of your site to above mentioned email address.
I would like to help you with my time.Thanks.
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] Plugin not working with 4.0Thanks for letting me know about this. I’ll have a look in to this within the next week.
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] Wp Menus no displayFirst you should create at least one WordPress menu. If it is not the reason, please send me your site link and admin login details to [email protected]. Then I’ll check, what is the reason behind of this problem.
Thanks.
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] Stopped working after 4.0 updateSince, I’m busy during this week, I’ll double check about this issue and reply soon. Please, do not close this thread.
Thanks.
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] Export or save settingsUnfortunately, it is not available with my plugin. But I agree, it is a very important feature. I’ll add this feature to my plugin soon. Thanks for pointing out it. You can try this plugin as an alternative solution.
https://ww.wp.xz.cn/plugins/options-importer/
Note: I didn’t try this plugin yet, just sending the link to you.
Forum: Plugins
In reply to: [WordPress All In One Admin Bar] Dynamic custom menuAccording to my understanding your requirement is;
Different menus should be displayed for different users. Unfortunately currently this is not possible.But, What did you mean “Presently I can see only urls for this” ?
Forum: Reviews
In reply to: [WordPress All In One Admin Bar] Works well, plenty of optionsThank you for the rating & comments. I’m glad it was useful to you.