dobalina
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom User Email] WPML compatible/translatableHi CWG,
Is there a way we can translate this directly in the code (instead of with a UI) for the time being?
Forum: Plugins
In reply to: [Gallery Bank - Wordpress Photo Gallery Plugin] Provide ALT-attributesThanks for the reply.
We’ll look for another plug-in.
Forum: Plugins
In reply to: [Flamingo] Flamingo Viewing PermissionsForum: Plugins
In reply to: [Flamingo] User Roles to View Inbound MessagesChristian, consider having a look at this post: Flamigo Roles and Capabilities
Forum: Plugins
In reply to: [Flamingo] Flamingo Role and Capabilities for Author and EditorIf this is not clear enough, consider viewing this post: Flamigo Roles and Capabilities
Integrating this in the User Role Editor, or finding a way how, would be useful ndeed.
(It helped me out)
Forum: Plugins
In reply to: [WP Store Locator] Change user permissionNothing as douchy to tell that you found the solution and not sharing it.
The only option now is to adjust the capabilities that are required for users to access the store locator plugin screen through a filter.
If you add this to your functions.php, then users who can ‘edit_posts’ are allowed to add/edit stores. And editors are allowed to ‘edit_posts’ so they should have access, see http://codex.ww.wp.xz.cn/Roles_and_Capabilities#Editor
add_filter( 'wpsl_capability', 'my_custom_capabilities' ); function my_custom_capabilities() { return 'edit_posts'; }The instructions above are not valid anymore AFAIK.
In the changelog of version 1.2.20 it reads:
'wpsl_capability' to manually set the required user capability for adding/editing storesIt’s not clear what should happen with this. There’s no option in the default UI of the Store Locator to deal with permissions.
Could someone specify what should be done in order to grant add/edit permissions to an editor of author please?
Edit: apparently this is another plugin than the WP Store locator. Ignore my question.