WordPress front end avatar upload not working

I am trying to change the avatar from the front end, but I am not able to change it.

The error I got:

Read More

“You don’t have permission to attach files to this post.”

whether I am trying with the admin account.

What should be the issue? I am trying this on HIREBEE theme version 1.3.1

Sample code:

<?php if ( $hrb_options->avatar_upload ): ?>
  <div class="large-2 small-2 columns upload-gravatar">
    <?php hrb_gravatar_media_manager( $current_user->ID, array( 'id' => '_app_gravatar' ) );  ?>
</div>
<?php endif; ?>
<div class="large-3 small-3 columns user-meta-info right">
    <?php 
       the_hrb_user_bulk_info( $current_user->ID, array( 'show_gravatar' => array( 'size' => 75 ) ) ); 
     ?>
</div>

You can check this theme here: Hirebee 1.3.1 theme link

Related posts