Forum Replies Created
-
AuthorPosts
-
23/08/2018 at 11:53 in reply to: Error upon entering a single form entry for a User with limited Form ID's #5105
Vladimir
KeymasterStarting from version 4.45 from 07.05.2018 URE Pro follows Gravity Forms version 2.3+ data model change:
Quote from changes list for v. 4.45:
“Function GFFormsModel::get_lead_table_name() call was replaced with GFFormsModel::get_entry_table_name() to provide compatibility with Gravity Forms v. 2.3+”.
This update is not compatible with earlier versions of Gravity Forms.Workaround: replace URE Pro back with version 4.44 and plan update to the latest version of Gravity Forms 2.3+.
22/08/2018 at 16:22 in reply to: Error upon entering a single form entry for a User with limited Form ID's #5103Vladimir
KeymasterHi,
What version of Gravity Forms do you use?
Vladimir
KeymasterHi,
You can not install other version of installed plugin via .zip file. You have to delete plugin via WordPress before install it this way as you will always get “Destination folder already exists” error message. Deleting plugin via WordPress will delete the settings you made for URE. So its better to deactivate plugin and remove its folder via FTP or file manager.
If you input a license key at the “Settings->User Role Editor->General” tab, it will be possible to update URE Pro directly from WordPress as any other plugin – from the Plugins or Updates pages. License key is available at your account page after login. Read this article for more details.
Vladimir
KeymasterExcellent! Thanks for the help with testing.
Vladimir
KeymasterHi Jake!
Good news that they work on a problem. Let’s wait for the update.
Vladimir
KeymasterThe fix was included into version 4.47.3, which I published today.
Vladimir
KeymasterI published version 4.47.3 today, which includes the update for this issue:
* Update: Content view restrictions add-on: meta box is added with ‘low’ priority now instead of ‘default’. It’s done for compatibility with custom post types (like “LearnPress->Courses”) for which this meta box was not shown.18/08/2018 at 09:50 in reply to: WP File Download + URE Pro – Meta Boxes – logic and pop broken? #5087Vladimir
KeymasterThanks for finding this. Line 434 at meta-boxes.php has a syntax error. It should use ‘.’ operator for strings concatenation instead of ‘+’. So valid code will be:
return array('result'=>'success', 'message'=>'Widgets permissions for '. $ure_object_name, 'html'=>$html);
I will include this fix into the next version 4.47.3. Let me know the result of your testing with updated version of this file.
Vladimir
KeymasterThanks for your help in isolating this bug. I will publish the fix.
17/08/2018 at 10:24 in reply to: Normal site admins on multi site cannot see custom taxonomies #5083Vladimir
KeymasterHi,
Go to every subsite where you have a problem and check if ‘Administrator’ role there has those custom post types capabilities granted.
Vladimir
KeymasterJake,
Thanks for this and upcoming information. The author of this topic have made the same and did not get response from BB developers yet.
Vladimir
KeymasterThanks.
I repeated the issue. Problem is not obvious and needs some time for the investigation. I will inform you as I get the result.Vladimir
KeymasterUser should have ‘edit_posts’, ‘edit_published_posts’ capabilities in order to edit own posts. ‘edit_others_posts’ is required to edit a post created by other user.
Did you set edit restriction for such user?
If ‘Yes’, such restriction does allow him to edit the posts just from the list which you allowed for him. WordPress internally creates new post and then reopen it for edit. That’s why edit permission error may be shown.Vladimir
KeymasterCan you share this plugin .zip with support [at-sign] role-editor.com via DropBox or Google Drive? I will look what is going on then.
Vladimir
KeymasterTry to install this code (theme’s functions.php or Must Use plugin):
add_filter('ure_users_select_primary_role', 'my_users_select_primary_role', 10, 1); function my_users_select_primary_role($select) { $user = wp_get_current_user(); if (in_array('user-manager', $user->roles)) { $select = false; } return $select; } add_filter('ure_show_additional_capabilities_section', 'ure_show_additional_capabilities_section'); add_filter('ure_bulk_grant_roles', 'ure_show_additional_capabilities_section'); function ure_show_additional_capabilities_section($show) { $user = wp_get_current_user(); if (in_array('user-manager', $user->roles)) { $show = false; } return $show; }
Replace ‘user-manager’ with your own user role ID.
-
AuthorPosts