Title: nickbats's Replies | WordPress.org

---

# nickbats

  [  ](https://wordpress.org/support/users/nickbats/)

 *   [Profile](https://wordpress.org/support/users/nickbats/)
 *   [Topics Started](https://wordpress.org/support/users/nickbats/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nickbats/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nickbats/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nickbats/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nickbats/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nickbats/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] DB update after upgrading to 2.11.1 version](https://wordpress.org/support/topic/db-update-after-upgrading-to-2-11-1-version/)
 *  Thread Starter [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [5 months, 2 weeks ago](https://wordpress.org/support/topic/db-update-after-upgrading-to-2-11-1-version/#post-18766333)
 * Hello [@yuriinalivaiko](https://wordpress.org/support/users/yuriinalivaiko/) 
   
   Thank you for your reply! The “Custom usermeta table” feature was disabled on
   all subsites so I updated the `um_last_version_upgrade` option for all sites 
   using the code you provided, and this successfully cleared the upgrade notice
   on each subsite. Thank you for the help!Best regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Update to 2.10.3: “Background process is running: Setting user statuses 0/1.”](https://wordpress.org/support/topic/update-to-2-10-3-background-process-is-running-setting-user-statuses-0-1/)
 *  [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/update-to-2-10-3-background-process-is-running-setting-user-statuses-0-1/page/2/#post-18520676)
 * The message disappeared after the scheduled action ran.
   Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Update to 2.10.3: “Background process is running: Setting user statuses 0/1.”](https://wordpress.org/support/topic/update-to-2-10-3-background-process-is-running-setting-user-statuses-0-1/)
 *  [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [1 year ago](https://wordpress.org/support/topic/update-to-2-10-3-background-process-is-running-setting-user-statuses-0-1/page/2/#post-18505109)
 * [@ieanea](https://wordpress.org/support/users/ieanea/) I have also updated to
   2.10.4 and still getting “Background process is running: Setting user statuses
   0/2” . did you something else to remove the notice besides updating the plugin?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Default Profile Photo](https://wordpress.org/support/topic/default-profile-photo-2/)
 *  Thread Starter [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/default-profile-photo-2/#post-17234746)
 * [@missveronicatv](https://wordpress.org/support/users/missveronicatv/) thank 
   you for your help, this worked!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Default Profile Photo](https://wordpress.org/support/topic/default-profile-photo-2/)
 *  Thread Starter [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/default-profile-photo-2/#post-17232067)
 * this code snippet worked, however it changed the profile photo to all the users
   of the specific role even the ones that already had uploaded a profile photo 
   of their choice. I only want this to be applied to the users of a specific role
   as a default photo IF only they do not have uploaded a profile photo.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Custom Change Password Tab in Account Page](https://wordpress.org/support/topic/custom-change-password-tab-in-account-page/)
 *  Thread Starter [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [3 years ago](https://wordpress.org/support/topic/custom-change-password-tab-in-account-page/#post-16795451)
 * Hi [@andrewshu](https://wordpress.org/support/users/andrewshu/), 
   yes you can
   close the topic.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Custom Change Password Tab in Account Page](https://wordpress.org/support/topic/custom-change-password-tab-in-account-page/)
 *  Thread Starter [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [3 years ago](https://wordpress.org/support/topic/custom-change-password-tab-in-account-page/#post-16790904)
 * Hello [@andrewshu](https://wordpress.org/support/users/andrewshu/) 
   I tried adding
   this code but I get a 503 **Service Temporarily Unavailable** Server error.
 *     ```wp-block-code
       add_filter('um_account_shortcode_args_filter', 'my_account_shortcode_args', 10, 1);
       function my_account_shortcode_args($args)
       {
           if (isset($args['tab']) && "account_change_password" === $args['tab']) {
               $args['tab'] = 'account_change_password';
           }
           return $args;
       }
   
       add_filter('um_account_content_hook_account_change_password', 'um_account_content_hook_account_change_password');
       function um_account_content_hook_account_change_password($output)
       {
           ob_start();
           echo do_shortcode('[ultimatemember_account tab="account_change_password"] ');
           $output .= ob_get_contents();
           ob_end_clean();
           return $output;
       }
       ```
   
 * The error is triggered by the shortcode **[ultimatemember_account tab=”account_change_password”]**.
   
   However I have found a different approach to achieve what I want. I removed the
   custom **account_change_password** tab and kept the default one. Then I used 
   the hooks **um_before_account_password **and **um_after_account_password** to
   add the additional content I want before and after the UM loads the change_password
   fields.Thank you for your time and help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Custom Change Password Tab in Account Page](https://wordpress.org/support/topic/custom-change-password-tab-in-account-page/)
 *  Thread Starter [nickbats](https://wordpress.org/support/users/nickbats/)
 * (@nickbats)
 * [3 years ago](https://wordpress.org/support/topic/custom-change-password-tab-in-account-page/#post-16786818)
 * Hi [@andrewshu](https://wordpress.org/support/users/andrewshu/) 
   yes I am outputing
   the tab content like this:
 *     ```wp-block-code
       add_filter('um_account_content_hook_account_change_password', 'um_account_content_hook_account_change_password');
       function um_account_content_hook_account_change_password($output)
       {
           ob_start();
           require(locate_template('/template-parts/account-tabs/change-pass-tab.php'));
           $output .= ob_get_contents();
           ob_end_clean();
           return $output;
       }
       ```
   
 * change-pass-tab.php contains the content I want to render including the **[ultimatemember_account
   tab=”password”]** shortcode.
    -  This reply was modified 3 years ago by [nickbats](https://wordpress.org/support/users/nickbats/).

Viewing 8 replies - 1 through 8 (of 8 total)