Title: jaaaay's Replies | WordPress.org

---

# jaaaay

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[bbp buddypress profile information] Multi selection field display broken in bbPress](https://wordpress.org/support/topic/multi-selection-field-display-broken-in-bbpress/)
 *  Thread Starter [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/multi-selection-field-display-broken-in-bbpress/#post-9509635)
 * Awesome! Great this still works for you [@divvy](https://wordpress.org/support/users/divvy/)
   🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate FAQ Accordion Plugin] Newest Update Brought Down Our Site](https://wordpress.org/support/topic/newest-update-brought-down-our-site/)
 *  [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/newest-update-brought-down-our-site/#post-9123020)
 * Same here. Latest update (v1.5.34) resulted in WSOD. Had to disable the plugin
   via ftp to get the site back.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Private groups] Non-translatable string?](https://wordpress.org/support/topic/non-translatable-string/)
 *  Thread Starter [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/non-translatable-string/#post-9122221)
 * Wow – you even translated it for me 😉
 * Works nicely. Thank you!
 * If I understand you right, I could also just leave my hardcoded changes in pg_forum_widgets.
   php and wait for your next release.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Private groups] Non-translatable string?](https://wordpress.org/support/topic/non-translatable-string/)
 *  Thread Starter [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/non-translatable-string/#post-9116155)
 * French
 * Just to clarify, I cannot find any reference to the string that contains the 
   word “in” in the .po file.
    -  This reply was modified 9 years, 2 months ago by [jaaaay](https://wordpress.org/support/users/jaaaay/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress Sitewide Activity Widget] Breaks BP toolbar and admin backend avatars](https://wordpress.org/support/topic/breaks-bp-toolbar-and-admin-backend-avatars/)
 *  Thread Starter [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/breaks-bp-toolbar-and-admin-backend-avatars/#post-9100403)
 * The update (v1.3.3) solved it for me.
 * Thank you, Brajesh!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restrict User Access - Ultimate Membership & Content Protection] Restrict/redirect BuddyPress Group and Member directory pages](https://wordpress.org/support/topic/restrictredirect-buddypress-group-and-member-directory-pages/)
 *  Thread Starter [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/restrictredirect-buddypress-group-and-member-directory-pages/#post-9070224)
 * Thanks for looking into this, Joachim 🙂
 * I looks like the theme was the culprit!
 * (Just fyi and for anybody else who might be running into this, I was using Spacious,
   the free version.)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[bbp buddypress profile information] Multi selection field display broken in bbPress](https://wordpress.org/support/topic/multi-selection-field-display-broken-in-bbpress/)
 *  Thread Starter [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/multi-selection-field-display-broken-in-bbpress/#post-9052916)
 * Did some searching and fixed it myself: in the plugin’s display.php, replace
 *     ```
       		//show item1 if activated show on topics/replies
       		if ($rbi_options['itemshow_item1'] == true) {
       			echo '<li>' ;
       			$label1 =  $rbi_options['item1_label'] ;
       			//show label if required
       				if($rbi_options['labelshow_item1'] == true) {
       				echo $label1." : " ;
       				}
       			$xpid=$wpdb->get_var("select id from $xfields where name = '$label1'") ;
       			$xpdata2= $wpdb->get_var("select VALUE from $xdata where field_id  = '$xpid' AND user_id = '$user_id' ") ;
       			echo $xpdata2;
       			echo '</li>' ;	
   
       		}
       ```
   
 * with
 *     ```
       		//show item1 if activated show on topics/replies
       		if ($rbi_options['itemshow_item1'] == true) {
       			echo '<li>' ;
       			$label1 =  $rbi_options['item1_label'] ;
       			//show label if required
       				if($rbi_options['labelshow_item1'] == true) {
       				echo $label1." : " ;
       				}
       			$xpid=$wpdb->get_var("select id from $xfields where name = '$label1'") ;
       			$xpdata2  = bp_get_member_profile_data( array( 'field'=>$label1,'user_id' => $user_id ) );
        			echo $xpdata2 ;
       			echo '</li>' ;	
   
       		}
       ```
   
 * repeat for remaining three fields. I’m sure this is hacky, but everything looks
   perfect! 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restrict User Access - Ultimate Membership & Content Protection] Restrict/redirect BuddyPress Group and Member directory pages](https://wordpress.org/support/topic/restrictredirect-buddypress-group-and-member-directory-pages/)
 *  Thread Starter [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/restrictredirect-buddypress-group-and-member-directory-pages/#post-9051898)
 * Thanks for your super quick reply!
 * Yes, I’m testing with just one access level right now (without the role specific
   redirects).
 * Here are the screenshots [http://imgur.com/a/zlRb6](http://imgur.com/a/zlRb6)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Private groups] Connecting Itthinx Groups plugin](https://wordpress.org/support/topic/connecting-itthinx-groups-plugin/)
 *  [jaaaay](https://wordpress.org/support/users/jaaaay/)
 * (@jaaaay)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/connecting-itthinx-groups-plugin/#post-9031967)
 * This would be sooo awesome!
 * I would also love to achieve an automated link between the Itthinx groups [http://www.itthinx.com/plugins/groups/](http://www.itthinx.com/plugins/groups/)
   and bbpress private groups. This would hugely extend the functionality of private
   groups because the Itthinx Groups plugin integrates with PayPal and Woocommerce
   and can auto-assign users to groups at registration.
 * fwiw I know how to look at stuff in the database – but just enough to make it
   dangerous 😉

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