Search Results for 'buddypress'
-
AuthorSearch Results
-
April 15, 2011 at 9:53 pm #110370
In reply to: Fatal Error on activating BuddyPress Plugin
josephguirguis
MemberI am using Servage Hosting & I am a beginner in developing so please tell me how to by easy steps
Thanks in advanceApril 15, 2011 at 8:28 pm #110368In reply to: Blank page after install Buddypress 1.1.2
krikette
MemberHello and sorry if I am messing up your cute little system here, but it is obvious that there is a major problem with buddypress SOMEWHERE and no one is doing a damn thing to figure it out.
We can post all our detailled information until we are blue in the face but it is clear that many people are having this problem on many different setup types and all I have seen anyone griping about posting questions “in the right format” do to those who have jumped through their hoops is ask people to fresh reinstall, clam up when people actually erase everything and start over with the same problem, and then accuse people who are actually TRYING to help of posting ‘bandaids’ to a problem no one you’re obviously disinclined to root out.
I’m not posting my information because I know it won’t make a damn, but I did want to post my $.02 in hopes that maybe it will motivate you to actually help all the people who are trying to tell you there is a problem.
It’s free, I get it, and I’m okay with that. It works for me but not on a client’s server. That sucks. What sucks more is that these people who actually went out of their way to get help and help others are being condescended. Bravo.
April 15, 2011 at 7:28 pm #110367Nahum
Participant@r-a-y thanks…I thought I could squeeze it in here at these forums, since I’m pulling in BP Profile components into the author.php template. These BP elements are what I can not get to show when there are no post existing for that user.
like i said, everything works fine when a post exist by the member.
for example, this is how I have the layout in the author.php on all my subsites, sidebar-left holds BP Avatar and Xprofile info, in the middle column contains the author posts loop, and in the sidebar-right I have BP Activity latest posts by author and BP activity latest comments by author.
April 15, 2011 at 7:07 pm #110364In reply to: redirect to activity after login?
r-a-y
KeymasterThat works too, though I’m not sure how safe it is to use the $bp_unfiltered_uri global in future BP versions like 1.3.
Here’s the “login_redirect” filter method if interested (found the URL):
April 15, 2011 at 7:00 pm #110361In reply to: Life Cycle of a Group?
r-a-y
KeymasterHmm… this is an interesting idea.
I would propose maybe building a group extension plugin that asks the super admin when the group should be closed.
If the group is closed, remove access to the activity entry form and the group forum form. Off the top of my head, not sure if there are any filters to disable the forms, might need to modify the group templates to do this. Could also remove the group join buttons as well.
April 15, 2011 at 6:51 pm #110359In reply to: Buddypress.org Features Theme
r-a-y
KeymasterFYI, the bp.org theme will never be publicly released.
The frontpage is just made up of a few floating divs and a little bit of positioning for the labels.
April 15, 2011 at 5:55 pm #110354Webweaver21
Member@Paul Gibbs In other words, a new user who registers cannot see any of the added BuddyPress functions. To any new users it apears as if BP was never installed. This wasn’t the case before I installed multi-user.
April 15, 2011 at 5:05 pm #110351In reply to: Send Private Static Message
shanebp
ModeratorThanks for the pointer. Got the listener working.
Here it is, for other noobs…`
function bp_send_private_bzzt() {
global $bp;if ( $bp->profile->slug != $bp->current_component || ‘bzzt’ != $bp->current_action || ‘send’ != $bp->action_variables[0] )
return false;$sender_id = $bp->action_variables[1];
$recip_id = $bp->action_variables[2];
$recip_name = htmlspecialchars(urldecode($bp->action_variables[3]));
$sender_name = $bp->loggedin_user->fullname;$alert_message = “You just sent a BZZT! to ” . $recip_name;
bp_core_add_message( __( $alert_message, ‘buddypress’ ) );$subject = $sender_name . ” just sent you a BZZT!”;
messages_new_message( array(‘sender_id’ => $sender_id, ‘subject’ => $subject, ‘content’ => “BZZT!”, ‘recipients’ => $recip_id ) );bp_core_redirect( wp_get_referer() );
}
add_action( ‘wp’, ‘bp_send_private_bzzt’, 3 );function bp_send_private_bzzt_link() {
echo bp_get_send_private_bzzt_link();
}
function bp_get_send_private_bzzt_link() {
global $bp;if ( bp_is_my_profile() || !is_user_logged_in() )
return false;$sender_id = $bp->loggedin_user->id;
$recip_id = $bp->displayed_user->id;
$recip_name = $bp->displayed_user->fullname;return apply_filters( ‘bp_get_send_private_bzzt_link’, wp_nonce_url( $bp->displayed_user->domain . $bp->profile->slug . ‘/bzzt/send/’ . $sender_id . ‘/’ . $recip_id . ‘/’ . $recip_name . ‘/’) );
}
`April 15, 2011 at 4:52 pm #110350Nahum
Participant@hnla thanks for chiming in. that would be alot of pages to create and manage, no? I think sticking to /author/ would be better off. Something else I’ve thought of is to force a Hello World post for all members. would love to hear suggestions on that approach.
April 15, 2011 at 2:48 pm #110341In reply to: Buddypress.org Features Theme
Hugo Ashmore
ParticipantIt’s not really that much different? I doubt it’s a good idea to use an older default theme with later BP versions the two will not be compatible
April 15, 2011 at 2:45 pm #110339In reply to: allow_call_time_pass_reference to true errors
mabjustmab
ParticipantHi Virtuali,
thanks for looking at this.
I am using WordPress Version 3.1.1
buddypress Version 1.2.8the error is caused when I Post on a group page.
the post goes through, but after this error.
I do NOT get the error when posting on the forum page.also,
when I try to create a new group, I get a whole page of errors (like below)
when I go to the top of the groups page, the new group is there.any help is greatly appreciated!
thank you!`Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 34
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 35
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 83
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 84
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 137
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 138
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 183
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 184
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 235
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 236
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 293
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/WebAdmin/mywebsite.com/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php on line 294`
April 15, 2011 at 2:33 pm #110336In reply to: Buddypress.org Features Theme
souder
MemberI like it better do you know where i can find it
April 15, 2011 at 2:31 pm #110335In reply to: Buddypress.org Features Theme
Hugo Ashmore
ParticipantIt’s basically the default theme but probably an early 1.2 version.
April 15, 2011 at 12:31 pm #110319In reply to: User Level CSS
Virtuali
ParticipantYou can do that with avatars: check it out: http://wpmu.org/simple-buddypress-avatar-css-tweaks-rounded-corners-shadows-highlight-admin-moderator/
April 15, 2011 at 12:31 pm #110318In reply to: URGENT – How To Set Default Values?
Boone Gorges
KeymasterThe most elegant way to do this is to filter bp_ajax_querystring. Detect whether you’re looking at the activity stream, and if the querystring is empty, add arguments that show friends’ activity.
Here’s a thread with an example on how to build such a filter (yours will do a few more conditional checks first): https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/add-filters-to-if-bp_has_activities-bp_ajax_querystring-activity/#post-88068
And here is some guidance on the arguments taken by bp_has_activity(): https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
April 15, 2011 at 11:54 am #110317nit3watch
ParticipantApril 15, 2011 at 11:33 am #110315In reply to: Switch language plugin
nickmy
Participantyeah I did but whats this?:
‘This plugin requires WPML. It uses WPML’s language API and hooks to BuddyPress to make it multilingual.’
April 15, 2011 at 10:49 am #110312In reply to: contus video gallery plugin for buddypress
Prince Abiola Ogundipe
ParticipantHi, thanks for your reply, i am using Avenue k9 buddypress buddypack theme which uses buddypress default theme function.
https://wordpress.org/extend/themes/avenue-k9-buddypress-buddypack
can you please check if there is something i can do to make it work
Regards
April 15, 2011 at 8:58 am #110308Hugo Ashmore
Participant@nit3watch
Hmm working for me. Just tested on a 1.3 test install. line numbers need disregarding or at least using as a very rough pointer to the area, line numbers have changed even more in 1.3.One thing that needs doing is where there is an instance of ‘odd’ or ‘even’ those need to become ‘ odd’ ‘ even’ i.e they need white space before the first letter in order to ensure that the class prints out as a valid syntactical class group:
class=”groups new_forum_topic odd”If it’s still not working paste up your file showing pertinent lines, this is a very simple approach so shouldn’t run into problems.
I would also make one other change and that is to rename $class as that is rather generic and open to clashing with another of that name change it to something like $stripe_class
April 15, 2011 at 7:37 am #110306nit3watch
Participant@hnla, may contain inaccuracies despite being on line 19 as apposed 20, your example was very explanatory though its not working?
I implemented the above though when I check the activity entries, it isn’t printing them out as even/odd. There has been a change to entry.php which is most likely the culprit?
April 15, 2011 at 5:24 am #110301In reply to: contus video gallery plugin for buddypress
Saranya Natarajan
MemberHi,
We have tested the contus video gallery with the following buddypress themes and the contus video gallery is working fine with them.
1. Darwin (BuddyPress BuddyPack) 1.2.1
2. BuddyPress Default 1.2.7
3. BuddyTheme 1.3
4. Randy Candy 1.0.0Please try with the above buddypress themes. If you have difficulty with any other buddypress theme, let us know. We will check and let you know.
Regards
Saranya
Contus video gallery.April 15, 2011 at 2:40 am #110297In reply to: allow_call_time_pass_reference to true errors
Virtuali
ParticipantThats a weird error. Tell directly what happens, is this error when you activate it? Or visit a buddypress page?
April 15, 2011 at 2:21 am #110295In reply to: What type of plugin would u suggest???
Virtuali
ParticipantBuddypress standard, without even any plugins is so extremely flexible for many ideas. If you want users to write a poem, have them create a forum topic with the poem! Or even a group.
If you have multisite, you could have your users create blogs, and their own poems.
April 15, 2011 at 2:16 am #110294In reply to: In Profile fields
pcwriter
ParticipantOops… my comment about “Required” fields is a bit (a lot?) misleading

Users will not be able to save their profile settings until all required fields are filled out… that’s what I meant by “trapped”
April 15, 2011 at 2:05 am #110293In reply to: Fatal Error on activating BuddyPress Plugin
Virtuali
ParticipantTry upping the memory limit if possible.
If you can’t up the memory limit, try to implement some of the improving performance tips listed here – https://codex.buddypress.org/getting-started/improving-performance/
-
AuthorSearch Results