Email post to submitter
Email post to submitter
Email post to submitter
Blank dashboard with no access
You should add the analytics code inside <script>…</script> code ginven to you by Analytics immediately before the </head> or, if you want to add it in the footer, right before the closing </body>. If you done that, can you please share the full code you try to add? (make sure to remove the tracking number)
How can I limit access to uploaded media depending on the logged in user’s user role?
You shouldn’t use Roles to handle permissions for your menu page. Instead, use capabilities, and then assign those capabilities to whichever roles should have access. For example, instead of creating a customrole role, use a custom capability like manage_custom_plugin: add_menu_page( ‘Custom-Plugin’, ‘Custom-Plugin’, ‘manage_custom_plugin’, ‘custom-plugin’, ‘init_custom_menu_page’ ); Now, using the Members plugin you can enter manage_custom_plugin … Read more
You may use the hook admin_menu() and function remove_submenu_page() The solution assumed the following conditions run it in theme functions.php, you may put somewhere else with different tweaking, but the following is proved to work in functions.php you know how to test the user access level by yourself, because the following solution is focus on … Read more
Custom user roles are unable to login
I got solution that this plugin has setting to save pdf file in temp directory and has option to change temp directory. Then I added path to save files and that file is accessed directly to download file. Sorry for creating this post without looking into plugin’s setting.
As you’ve already done, the first step is to contact the plugin author directly. If it’s a plugin in the .org repo, you can also try asking the question on the plugin’s support page there. Others in the community might see it and help, though that might take awhile. (If it’s not on .org, there … Read more
Restrict Users to Only Edit Media Owned by Users in Their Role