Forum Replies Created
-
AuthorPosts
-
24/09/2019 at 03:19 in reply to: Problem with restrict by "with category/taxonomy ID (comma separated)" #5938
Vladimir
KeymasterHi Martin,
This is an intended behavior. When user is restricted by taxonomies (for example: 2, 3) he can edit post only with those taxonomies: 2, 3. WordPress creates a new post in 2 steps: 1) inserts new post; 2) reopens it for editing.
If new created post will not have one of allowed taxonomies user will receive access error. Remember he is allowed to post new and edit existing posts only inside the list of allowed taxonomies. This is a reason why URE automatically assigns to a new created post the 1st taxonomy from the list of taxonomies allowed for this user.
User should check what taxonomy is assigned to his post and reassign another one.If you have another issue please share the images to give me more details.
Vladimir
KeymasterHi Levent,
URE Pro does not include a feature to manage access to languages inside WPML for a roles.
19/09/2019 at 03:02 in reply to: Multisite fatal error can't activate restrictions for single site administrator #5933Vladimir
KeymasterThank you for this bug report.
For quick fix download beta version (it’s available from the Download page) and replace pro/includes/classes/settings-pro.php file at your site with one from the beta version .zip.Vladimir
KeymasterI tested with another roles data (21 roles) you provided. I can not reproduce the issue with import exported role. I tried create a role as a copy of another one and export/import it. No problem.
Technically new role from scratch and role as copy of another role are created the same way both. New role created just as a copy of subscriber role.
Definitely, a reason of the issue is somewhere else. Is it possible to get access to your site stage copy with admin access to reproduce/investigate the issue?
Vladimir
KeymasterURE shows ‘Delete Role’ button only when there are role(s) available for deletion.
WP built-in role is not available for deletion by default. Custom roles assigned to user(s) are not available for deletion. You have to revoke role from all users, in order it will become available for deletion.Vladimir
Keymasterunfiltered_html purpose is to block just selected list of HTML tags (potentially dangerous), not full usage of HTML.
I can not recommend a solution for Elementor.
Vladimir
KeymasterURE does not help with hide/show full Elementor elements.
Look/check if this plugin does well what it promises.
09/09/2019 at 11:43 in reply to: When Viewing CPT nothing shows up in my "Mine" view, though I own 2 #5921Vladimir
KeymasterDid you apply any edit restrictions to your user? If ‘Yes’, show screenshot.
Vladimir
KeymasterHi,
Change “Views Access” from ‘Prohibit’ to ‘Allow’ view. Then only logged-in users will see page content, directly according to settings made: allow for any logged-in user, and show error message for any other visitor.
Vladimir
KeymasterHi Robert,
Import process stops on the step of decoding data back to JSON. It fails due some incorrect (for JSON) characters inside.
So I need to investigate and fix 2 things:
1) why error message is not shown;
2) what’s happening with JSON formatted data.For item 2) I need raw roles data from the database. Can you send me exported record from wp_options table?
You can extract needed record with this command:SELECT * FROM wp_options WHERE option_name='wp_user_roles';‘wp_’ is your db prefix in table name and in option name value, so if it’s not equal to ‘wp_’ replace ‘wp_’ to your own db prefix value from wp-config.php file.
Vladimir
KeymasterSend to support [at-sign] role-editor.com exported file of a role which you can not import. I will investigate what’s going wrong.
Vladimir
KeymasterQuick workaround:
Open plugins/user-role-editor-pro/pro/includes/classes/meta-boxes.php and add this element'pageparentdiv'=>'page-attributes'to $data array at get_gutenberg_components_former_meta_boxes() method, line #288,
so instead of currentprivate function get_gutenberg_components_former_meta_boxes() { $data = array( 'categorydiv'=>'taxonomy-panel-category', 'commentstatusdiv'=>'discussion-panel', 'postexcerpt'=>'post-excerpt', 'postimagediv'=>'featured-image', 'tagsdiv-post_tag'=>'taxonomy-panel-post_tag', 'slugdiv'=>'post-link' ); return $data; } // end of get_gutenberg_components_former_meta_boxes()it should be
private function get_gutenberg_components_former_meta_boxes() { $data = array( 'categorydiv'=>'taxonomy-panel-category', 'commentstatusdiv'=>'discussion-panel', 'postexcerpt'=>'post-excerpt', 'postimagediv'=>'featured-image', 'tagsdiv-post_tag'=>'taxonomy-panel-post_tag', 'slugdiv'=>'post-link', 'pageparentdiv'=>'page-attributes' ); return $data; } // end of get_gutenberg_components_former_meta_boxes()It resolves the issue. This fix will be included into the next update.
Vladimir
KeymasterHi Gislaine,
I confirm the issue. It stopped work somehow for the related Gutenberg sidebar sections.
I will try to find a solution and publish a fix.
Thanks for your help.
Vladimir
KeymasterHi,
Can you record short video with settings you made? Or send admin credentials to support [at-sign] role-editor.com in order I can look at your settings on-line.
Vladimir
KeymasterHi,
I found and fixed a bug, related to the filtering categories for Gutenberg. You may try beta version 4.52.b3. It’s available after login from the same download page.
-
AuthorPosts