Forum Replies Created
-
AuthorPosts
-
16/07/2016 at 03:27 in reply to: 4.26.1 breaks "Select a category" with Download Monitor plugin #2535
Vladimir
KeymasterThanks for the additional information. I reproduced a problem. I will develop a fix.
15/07/2016 at 01:41 in reply to: 4.26.1 breaks "Select a category" with Download Monitor plugin #2533Vladimir
KeymasterDid you set ‘block not selected’ restrictions with ‘Admin menu access’ module for this role?
Could you show a screenshot?Vladimir
KeymasterYou have to understand what plugin removes ‘Logout’ menu. Did you set “Admin menu” restrictions for that role? What will be with ‘Logout’ if you deactivate URE’s “Admin menu” add-on?
If URE is not a source of a problem, try to deactivate plugins one by one to isolate it.
Vladimir
KeymasterIs top menu bar available for such user at the back-end?
06/07/2016 at 10:58 in reply to: Private topic option in forums, on this website is not working #2513Vladimir
KeymasterHi,
Thanks again. The issue was confirmed and fixed.
bbPress requires to add additional capabilities to the “Participant” role in order user with this role may see the private topics and replies.Vladimir
KeymasterThanks for your help with testing.
Yes, It’s safe to use at the live site. I applied just the only change to it – allowed the sorting parameters for posts list page.
I will publish 4.26.1 as a stable one in a couple of days, just in case some other quick bug will be discovered in version 4.26.Vladimir
KeymasterHi Rick,
Thanks for your help. I confirm this bug. It occurs when you restrict role with “Admin Menu” and use “block not selected” model.
I made available a fix with development version 4.26.1.b1. You may get it after login from the download page.I wait a result of your test.
Vladimir
KeymasterThanks for the information. Good that this issue was resolved finally.
05/07/2016 at 13:34 in reply to: Private topic option in forums, on this website is not working #2502Vladimir
KeymasterHi,
Thanks for your help. I added a “Logout” link to the “Account” page.
Forums are managed by bbPress here. “Private” means that topic is not available for not logged-in users and, that is, for the search engines. Any logged-in user may read such topic of course.
I tested – site returns 404 error for the private topic if you did not login.
Vladimir
KeymasterHi,
In short, WooCommerce redirects to front-end any user without edit_posts capability.
This post will give more details on the problem and workaround for it:Vladimir
KeymasterHi Jawad,
It’s a bug of that plugin, which shows its empty menu to any user without ‘manage_options’ capability. Until it’s not fixed by developer you may remove this menu item for all users without ‘manage_options’ capability by adding this code into the active theme functions.php file or setup it as a must use plugin:
add_action('admin_menu', 'yit_menu_fix', 100); function yit_menu_fix() { if (!current_user_can('manage_options')) { remove_menu_page('yit_plugin_panel'); } }
Vladimir
KeymasterYes. I work on it.
Vladimir
KeymasterHi Jawad,
‘Yith Plugins’ menu is protected by ‘manage_options’ capability. This menu is not shown in ‘Admin menu’ dialog in case a role does not have ‘manage_options’ capability.
Vladimir
KeymasterYes, you are right. I supposed that you have active WPML plugin, when found a ‘lang’ parameter in URL.
Vladimir
KeymasterOK. You missed to call it. Let’s make a step forward, replace line
$this->main_blog_id = $this->blog_ids[0][0];
at the __construct() function with this one:
$this->main_blog_id = $this->get_main_site();
-
AuthorPosts