-
-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After setting a custom capability access is revoked for single install admins #7218
Comments
Super admin checks are not utilized unless on multisite -- so even if you are an admin of a single site, you don’t automatically get access to any/all caps. That’s a WP quirk IMO. We could perhaps do a check when they set a cap there to warn them that their role doesn’t have that cap yet, but I don’t think there’s anything we could do there besides possibly some workflow improvements like:
|
While your assessment here is totally valid, it's not directly related to the bug here so probably belongs in it's own issue (related to this one). The issue here is that when I revert the capability to "post" this change isn't done. For some reason it still not accessible anymore and I cannot find out why/where this goes wrong. The register parameters seems correct. |
I didn't realize resetting there wasn't working. Can you confirm that the value remains post on reload and that the pod config did change over? |
Yes I already checked this, the change does seem to reflect the Pods register options but it looks like it's maybe modified afterwards based on the custom value? |
Found the culprit. Basically this field is a text field with a default value. The default value kicks in when null is received from the config. But when you save an empty text field option it will automatically be removed from the postmeta table. At that point, it's not an empty string as when you saved it -- it becomes a null. The solution here is to stop using the default value and move that into the placeholder text instead. Note: Switching to post/page capability types would still work. |
Description
Once you've saved a CPT Pod with a custom capability this capability will keep on being used, even after you switch back to the default Post or Pages capabilities.
If you set a custom capability then the whole access is revoked if you do not assign it to the admin role.
If you have set a custom capability and then select the Post again you will be able to list the CPT but not edit or anything.
The capability value keeps being saves in the CPT, even though it's not set on a custom capability anymore.
This isn't a problem but should be fixed when registering the CPT.
Version
3.0.8
Testing Instructions
Possible Workaround
You can manually remove the capability input and it will work again.Nope, this doesn't work either... can't undo this for some reason...
The text was updated successfully, but these errors were encountered: