|
The "Edit Link to Post" only shows on the Admin area
Started by: MargeP6083
in: Toolset Professional Support
|
|
2 |
4 |
4 years, 2 months ago
Nigel
|
|
Views are not accessible anymore from the wp-admin >and display wrongly on pages
Started by: FRANCESCOD7762
in: Toolset Professional Support
|
|
2 |
8 |
4 years, 3 months ago
FRANCESCOD7762
|
|
Problem displaying an Edit Post Form link to the currently logged-in user.
Started by: nabilS-3
in: Toolset Professional Support
|
|
2 |
2 |
4 years, 3 months ago
Christian Cox
|
|
Custom role no longer able to perform same tasks
Started by: Chris
in: Toolset Professional Support
Quick solution available
Problem: I have a custom role that should be able to submit a Form to add or edit a child post, but the parent post options are not shown in the select field in the Form. This was working before a recent update.
Solution: Check your custom code to confirm that redirects set up to block access to the back-end of the site are not applied to admin-ajax.php requests. Add some conditional logic to prevent those redirects as needed, like in the following code example:
/**
* Block wp-admin access for non-admins (not while doing AJAX, see https://toolset.com/forums/topic/custom-role-no-longer-able-to-perform-same-tasks/)
*/
function ace_block_wp_admin() {
if (!current_user_can('edit_users') && ( !defined('DOING_AJAX') || !DOING_AJAX ) ) {
wp_safe_redirect( '/my-account');
exit;
}
}
add_action( 'admin_init', 'ace_block_wp_admin' );
|
|
2 |
12 |
4 years, 3 months ago
Chris
|
|
Want to use the Toolset Access, but not seeing options within it
Started by: Shae
in: Toolset Professional Support
|
|
2 |
3 |
4 years, 4 months ago
Shae
|
|
Restrict access to media library while user upload photo
Started by: Easyweb Consulting
in: Toolset Professional Support
|
|
2 |
3 |
4 years, 5 months ago
Easyweb Consulting
|
|
Edit button visible for admins but not for users
Started by: AlimB3245
in: Toolset Professional Support
|
|
2 |
11 |
4 years, 5 months ago
AlimB3245
|
|
Editor Roles has permission issues
Started by: AlimB3245
in: Toolset Professional Support
Quick solution available
Problem:
With Toolset Access + WPML plugins, when logged in as editor user, I can not edit regular posts.
Solution:
You can try these:
Dashboard-> Toolset-> Access control-> Post Types
find post type "Posts", enable option: Managed by Access
save and test again.
Relevant Documentation:
|
|
2 |
5 |
4 years, 5 months ago
AlimB3245
|
|
Edit Post Link not displaying for certain Access Roles
Started by: davidL-7
in: Toolset Professional Support
Quick solution available
Problem: The "edit post link" is not appearing for certain roles despite having Form controls set appropriately in Toolset Access Control.
Solution: Check the post type access control settings to ensure Access is managing this post type. If not, activate Access control for this post type and set the controls appropriately.
|
|
2 |
3 |
4 years, 6 months ago
davidL-7
|
|
Using access to grant ability to edit only relationship items
Started by: coreyh-2
in: Toolset Professional Support
|
|
3 |
13 |
4 years, 6 months ago
Luo Yang
|
|
Please add this reply to previous thread
Started by: joelB-3
in: Toolset Professional Support
|
|
2 |
2 |
4 years, 6 months ago
Jamal
|
|
Toolset Access on custom post
Started by: erikO
in: Toolset Professional Support
Quick solution available
|
|
2 |
3 |
4 years, 6 months ago
erikO
|
|
Custom fields not visible within WP Admin User administration
Started by: simonM-5
in: Toolset Professional Support
Quick solution available
Problem:
The user has created a user field group and it was not available for edit as an admin in all users.
Solution:
The user field groups are assigned to user by role. Check this screenshot http://prntscr.com/s43gcu
|
|
2 |
7 |
4 years, 7 months ago
simonM-5
|
|
"Cheating" error when attempting to edit a taxonomy
Started by: nadavR
in: Toolset Professional Support
|
|
4 |
37 |
4 years, 7 months ago
Christian Cox
|
|
Best way to make "admin only" user fields?
Started by: cantonB
in: Toolset Professional Support
|
|
2 |
3 |
4 years, 7 months ago
cantonB
|