• Hi, using em 5.1.4, I selected “upload_event_images” for all roles. Really just want to let subscribers create events and upload images. However, no image uploads available for subscriber and contributor. “insert/Upload” is gone from the post and “Featured Image is there, but user cannot access.

    I have disabled all plugins except EM, refreshed the database, and deactivated/reactivated the EM Plugin. Also, uploads directory is set to 755. Any Ideas?

    http://wordpress.org/extend/plugins/events-manager/

Viewing 3 replies - 1 through 3 (of 3 total)
  • could it be a wordpress user capability/roles?

    Thread Starter krazybear

    (@krazybear)

    well, I thought it might be, but I don’t have any roles editor other than what EM does, and other plugins are disabled anyway. I’m very familiar with wordpress and racked my brain, but I can’t think of any default behaviors or settings that would “prevent” the EM granular settings to not work.

    However, I suspect it probably IS something along those lines. One thing I considered was to use role scoper or similar plugin to grant access possibly, but thought it might crash with the EM roles. What do you think?

    I found this on a wordpress blog and you might want to try these:

    if ( current_user_can('contributor') && !current_user_can('upload_files') )
        add_action('admin_init', 'allow_contributor_uploads');
    
    function allow_contributor_uploads() {
        $contributor = get_role('contributor');
        $contributor->add_cap('upload_files');
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Events Manager] Can't Upload Images For Subscriber and Contributor’ is closed to new replies.