Title: harmjanr's Replies | WordPress.org

---

# harmjanr

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

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

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 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] Unable to do WP_User_Query with meta filter](https://wordpress.org/support/topic/unable-to-do-wp_user_query-with-meta-filter/)
 *  Thread Starter [harmjanr](https://wordpress.org/support/users/harmjanr/)
 * (@harmjanr)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/unable-to-do-wp_user_query-with-meta-filter/#post-16041338)
 * Solved it with this meta_query, with help of this stackexchange thread: [https://wordpress.stackexchange.com/questions/16709/meta-query-with-meta-values-as-serialize-arrays](https://wordpress.stackexchange.com/questions/16709/meta-query-with-meta-values-as-serialize-arrays)
 *     ```
       'meta_query' => array(
           array(
               'key' => 'mygroups',
               'value' => sprintf(':"%s";', $groupid),
               'compare' => 'LIKE'
           )
       )
       ```
   
 *   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] Profile photo and user tags issue](https://wordpress.org/support/topic/profile-photo-and-user-tags-issue/)
 *  Thread Starter [harmjanr](https://wordpress.org/support/users/harmjanr/)
 * (@harmjanr)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/profile-photo-and-user-tags-issue/#post-15998868)
 * Thanks a lot for your help! Both issues are resolved.
 *   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] Profile photo and user tags issue](https://wordpress.org/support/topic/profile-photo-and-user-tags-issue/)
 *  Thread Starter [harmjanr](https://wordpress.org/support/users/harmjanr/)
 * (@harmjanr)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/profile-photo-and-user-tags-issue/#post-15992653)
 * [@missveronicatv](https://wordpress.org/support/users/missveronicatv/) thanks
   for your answer, points me in the right direction! The quality of the image is
   190×190 max (also on the actual user page on the website). Is this the best quality
   possible? It looks quite blurry on both the site and the app..
 *   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] Profile photo and user tags issue](https://wordpress.org/support/topic/profile-photo-and-user-tags-issue/)
 *  Thread Starter [harmjanr](https://wordpress.org/support/users/harmjanr/)
 * (@harmjanr)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/profile-photo-and-user-tags-issue/#post-15990741)
 * The user tags issue is fixed, apparently in the newer version of WordPress there
   is a prepare_callback property in show_in_rest where you can evaluate php code
   to fetch the terms.
 *     ```
       register_meta(
           'user',
           'group',
           array(
               'type' => 'string',
       		'single' => true,
               'show_in_rest'      => [
               	'prepare_callback' => function( $value ) {
       	        	$retval = [];
       	        	foreach($value as $id) {
       		        	$retval[] = get_term($id);
       	        	}
   
       	        	return $retval;	
                   }
               ],
           )
       );
       ```
   
 * The profile picture issue looks like a specific UM question, so any help is still
   appreciated.
 *   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] Ultimate Member – The forms don’t appear, I have to refresh](https://wordpress.org/support/topic/ultimate-member-the-forms-dont-appear-i-have-to-refresh/)
 *  [harmjanr](https://wordpress.org/support/users/harmjanr/)
 * (@harmjanr)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/ultimate-member-the-forms-dont-appear-i-have-to-refresh/#post-15963277)
 * [@tactildisseny](https://wordpress.org/support/users/tactildisseny/) I stumbled
   upon the same issue today. I was showing the um page in a webview that had Javascript
   disabled. Only setting opacity on 1 didn’t work, since the layout of the page
   looked bad.
    Enabling Javascript fixed it for me.

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