BuddyDev

Search

[Resolved] BP Simple Front End Post: Image upload issue for authors

  • Participant
    Level: Enlightened
    Posts: 79
    Leo on #4441

    Hi Brajesh,

    Any updates on this?
    Maybe there’s a quick thing to change the wp user roles to limit media visibility without doing anything on the plugin? That will be great for me.

    Thank you,
    Leo

  • Participant
    Level: Enlightened
    Posts: 79
    Leo on #4568

    Hi Brajesh,

    can you tell me please where you restricted access before? I tried to find it and change to include editors as well, but no success.

    Thank you,
    Leo

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #4573

    Hi Leo,
    I am sorry for not looking at it earlier.

    Today, I looked at it.
    Here is what I did.
    1. I registered a custom post type article like this

    
    
    function buddydev_register_post_types() {
    	
    	register_post_type( 'articles', array(
    		'labels' => array(
    			'name'			=> 'Articles',
    			'singular_name' => 'Article',
    			
    		),
    		'public'	=> true,
    		'slug'		=> 'articles',
    		'supports'	=> array('title', 'editor', 'thumbnail', 'author'),
    	) );
    }
    add_action( 'init', 'buddydev_register_post_types' );
    

    Then I went to BuddyBlog settings and chose this post type as selected.

    After that I tried to upload with Subscriber User account and It worked perfectly.

    Note:- I am using latest version of BPSFEP, BuddyBlog, BUddyPress, WordPress and testing it on non multisite.

    From the above test, I believe you are using some 3rd party plugin that has been conflicting with permissions and causing it.

    Can you please check by disabling a few or replicating on a test server?

    Thank you
    Brajesh

  • Participant
    Level: Enlightened
    Posts: 79
    Leo on #4580
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #4606
    This reply has been marked as private.

The topic ‘ [Resolved] BP Simple Front End Post: Image upload issue for authors’ is closed to new replies.

This topic is: resolved