Paul
Forum Replies Created
-
Forum: Plugins
In reply to: [SendGrid] Problem with auto save API keysame problem here
- This reply was modified 6 years, 3 months ago by Paul.
Forum: Plugins
In reply to: [User Role Editor] Privacy capabilitiesThanks for the deeper research Vladimir. So something like the following will do the trick or I am missing something?
Also maybe you want to update your snippet.
add_filter( 'map_meta_cap', 'map_erase_others_personal_data', 10, 2 ); function map_erase_others_personal_data( $caps, $cap ) { if ( !is_admin() ) { return $caps; } if ( current_user_can( 'setup_network' ) ) { return $caps; } if ( $cap === 'delete_users' ) { $caps = array( 'erase_others_personal_data' ); } return $caps; }
Forum: Plugins
In reply to: [User Role Editor] Privacy capabilitiesI think the issue is not related to assigned capabilities. As I said even if assign all the capabilities to the role still I get “Sorry, you are not allowed to erase data on this site.”
Forum: Plugins
In reply to: [User Role Editor] Privacy capabilitiesI have added the ‘delete_users’ capability but I get the same message. I tried it on a clean multisite installation.
Forum: Plugins
In reply to: [User Role Editor] 4.9.6: new privacy capabilityI tried the above code as MU plugin in a multisite installation. I have added manage_privacy_options, export_others_personal_data, erase_others_personal_data and delete_users capabilities to a custom role.
My issue is that I can access the “Export Personal Data” but not the “Erase Personal Data”.
Forum: Reviews
In reply to: [PixelYourSite - Your smart PIXEL (TAG) & API Manager] Poor UIThank you for the quick respond. The issue was related to ad blocker. (Although I didn’t have issues when I manually add the Pixel code).
I just kept the review about design.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Multisite: Akismet only on main siteMy issue was coming from other plugin.
After 4 months is there any update on this?
Forum: Plugins
In reply to: [Adminimize] Missing admin titleNot the title (heading) of the page but the meta title of the page.
Example:
Normal meta title: MyPageTitle ? mysitename — WordPress
When the page is hidden: ? mysitename — WordPress+1 for Multisite support
Forum: Plugins
In reply to: [User Role Editor] Multisite custom post type attachment permissionsI forgot to mention that all the default post permissions are disabled (I don’t need the default posts) so enabling the ‘edit_others_posts’ it didn’t work in my case.
Forum: Plugins
In reply to: [Adminimize] User can’t access ProfileI have checked (hide) the “Users Group” option from “Menu Options” section.
Forum: Plugins
In reply to: [Adminimize] User can’t access ProfileThanks for the quick respond! The “Allow Page Access” option did the trick!
Yes it’s almost the same. It would be useful if we had an option to allow comments on specific sites or on main site.
(I already saw your answer on other topic)
Thank you!
Forum: Plugins
In reply to: [Adminimize] some admin bar groups not being deactivatedJust I saw that in a another site I get an automatic update for the Version 1.11.2-dev and now it works fine.