Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 40,451 through 40,475 (of 69,089 total)
  • Author
    Search Results
  • #110370

    I am using Servage Hosting & I am a beginner in developing so please tell me how to by easy steps
    Thanks in advance

    #110368
    krikette
    Member

    Hello 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.

    Nahum
    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.

    #110364
    r-a-y
    Keymaster

    That 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):

    BuddyPress trick: Redirect Users to their profile on login

    #110361

    In reply to: Life Cycle of a Group?

    r-a-y
    Keymaster

    Hmm… 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.

    #110359
    r-a-y
    Keymaster

    FYI, 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.

    Webweaver21
    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.

    #110351
    shanebp
    Moderator

    Thanks 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 . ‘/’) );
    }
    `

    Nahum
    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.

    #110341
    Hugo Ashmore
    Participant

    It’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

    #110339
    mabjustmab
    Participant

    Hi Virtuali,
    thanks for looking at this.
    I am using WordPress Version 3.1.1
    buddypress Version 1.2.8

    the 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`

    #110336
    souder
    Member

    I like it better do you know where i can find it

    #110335
    Hugo Ashmore
    Participant

    It’s basically the default theme but probably an early 1.2 version.

    #110319

    In reply to: User Level CSS

    Virtuali
    Participant
    #110318
    Boone Gorges
    Keymaster

    The 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/

    nit3watch
    Participant

    @hnla ok these are the only edits I have made, though I see you said via jQuery though I haven’t implemented andys one – was I supposed to and if yes, how?

    Still not printing out odd or even.

    the forums not liking something in my code so its on past bin

    #110315

    In reply to: Switch language plugin

    nickmy
    Participant

    yeah I did but whats this?:

    ‘This plugin requires WPML. It uses WPML’s language API and hooks to BuddyPress to make it multilingual.’

    #110312

    Hi, 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

    Hugo 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

    nit3watch
    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?

    #110301

    Hi,

    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.0

    Please 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.

    #110297
    Virtuali
    Participant

    Thats a weird error. Tell directly what happens, is this error when you activate it? Or visit a buddypress page?

    #110295
    Virtuali
    Participant

    Buddypress 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.

    #110294

    In reply to: In Profile fields

    pcwriter
    Participant

    @onyx808

    Oops… 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” :-)

    #110293
    Virtuali
    Participant

    Try 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/

Viewing 25 results - 40,451 through 40,475 (of 69,089 total)
Skip to toolbar