• Hello, I’m using your plugin to enable users to upload and post images,videos and music directly to my site, but I would like to be able to moderate their posts myself before publishing.

    The thing is that the minimum role that is allowed with media file uploads is “Author”. That doesn’t work for me because at author level, a user can override the pending state on his own from the wp-dashboard.

    Is there something I could change in code so I can provide contributors with media file uploading priviledges and still be able to moderate their posts?

    https://www.ads-software.com/extend/plugins/quick-post-widget/

Viewing 1 replies (of 1 total)
  • Plugin Author inapan

    (@inapan)

    You can try to change some code in the quick-post-widget.php. On line 413 of the current version 1.7.2 change

    if ( current_user_can(‘publish_posts’) )

    to

    if ( $current_user->user_level >= 1 )

    Hope this helps.
    Perry

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Quick Post Widget] media file priviledges to contributors’ is closed to new replies.