jaaaay
Forum Replies Created
-
Awesome! Great this still works for you @divvy 🙂
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Newest Update Brought Down Our SiteSame here. Latest update (v1.5.34) resulted in WSOD. Had to disable the plugin via ftp to get the site back.
Forum: Plugins
In reply to: [Private groups] Non-translatable string?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
In reply to: [Private groups] Non-translatable string?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 ago by jaaaay.
The update (v1.3.3) solved it for me.
Thank you, Brajesh!
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.)
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! 😉
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
Forum: Plugins
In reply to: [Private groups] Connecting Itthinx Groups pluginThis would be sooo awesome!
I would also love to achieve an automated link between the Itthinx 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 😉