Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 9,101 through 9,125 (of 68,916 total)
  • Author
    Search Results
  • #258895
    danbp
    Participant

    What i want is to show view page content in the landing page of buddypress which is home.php . Is there any way i can achieve that?

    bp-templates/bp-legacy/buddypress/members/single/home.php contains dynamic templates and shows by default the member activity template.

    If you use the above code, you’ll get Resume as default content. This is the simpliest way to achieve what you want.

    FYI: the Resume plugin is 4 years old and no more maintained. In 4 years, many things changed in xprofile component and what you actually can do with these fields is much more evoluted than 4 years ago. IMO, you wouldn’t even have to use it, as you can get a similar result directly with BuddyPress.

    #258893
    danbp
    Participant
    #258881
    SunshineMagic
    Participant

    I have this issue too. I can’t believe that no one has responded to you in 4 months!??

    It’s clearly a buddypress issue too as it doesn’t work with the theme I am using nor does it work with the default wordpress theme and apparently while it used to work with your theme, after a reinstall, not anymore.

    So it’s definitely a buddypress issue but no one responds in 4 months?? How on earth are we to get what we need working if the response time is more then 4 months??

    Feeling concerned that buddypress was the wrong choice. This is my first issue and it’s a bad first experience! Unfortunately I put 2 months into building this site and I can’t go back now so it looks like I’m going to have broken pieces and likely have to dump buddypress and maybe even wordpress all together and build a custom PHP site asap, unless someone gets back to yoUs soon.

    I hope they do cause I’ve been having fun w/ WP and BP but functionality clearly comes before fun…

    #258879
    shanebp
    Moderator

    These forums are for BuddyPress.
    Please contact me via the PhiloPress website.

    #258870
    danbp
    Participant

    Hi @kyla123,

    if you use BuddyPress Login widget, you have a “Remember me” checkbox by default.

    If you added an extra page just to let members log in (?), read this WP documentation and check your customization.

    #258866
    danbp
    Participant

    Hi,

    not sure i understand correctly, but if you want the resume page to show as default landing tab (in place of the user activity) when you are on a profile, you can use this:

    define( 'BP_DEFAULT_COMPONENT', 'resume' );

    Add it to bp-custom.php

    Codex reference.

    #258854
    Julia_B
    Participant

    Is there way to @mention all members?

    This is something I’d like to be able to do on the bbpress forum on my buddypress site. I find forum mentions draw more site engagement than emailing all members, but filling a post with all members’ @ names detracts from the post content. So is there a function like @all or @everyone?

    Thanks 🙂

    themichaelglenn
    Participant

    I’ve built a BuddyPress specific menu (using the BuddyPress Logged In links).

    In which file, and what location, do I add the code @socialc provided?

    #258846
    ckchaudhary
    Participant

    The filter you are looking for is bp_get_activity_action. So you’ll need to do something like:

    function SN_member_header( $action ) {	
        return $action . "success!";
    }
    
    add_filter( 'bp_get_activity_action', 'SN_member_header');

    For a better understanding, you can check the code in function bp_get_activity_action in plugins/buddypress/bp-activity/bp-activity-template.php

    #258842
    knowitallninja
    Participant

    Sorry for all the updates, I have found the problem. In bp-settings-actions.php there is a line in the default handling of a password change that says this: $_POST[’email’] = $update_user->user_email;

    By commenting that line out, it fixes the problem and my code works. It’s not ideal though as whenever I update buddypress it’ll change back. So if anyone knows a way around that then that would be great.

    Otherwise I have a working script. For future reference it’s here:

    function action_bp_core_general_settings_after_save() {
    $useremail = $_POST[’email’];
    $userpassword = $_POST[‘pwd’];
    $current_user = wp_get_current_user();

    if(wp_check_password( $userpassword, $current_user->user_pass, $current_user->ID)) {
    if ( $current_user->user_email != $useremail ) {
    delete_user_meta( $current_user->ID, ‘pending_email_change’ );
    $userdata = array(
    ‘ID’ => $current_user->ID,
    ‘user_login’ => $current_user->user_login,
    ‘user_email’ => $useremail
    );
    $result = wp_insert_user( $userdata );
    }
    }
    };
    add_action( ‘bp_core_general_settings_after_save’,’action_bp_core_general_settings_after_save’ );

    #258828

    In reply to: Activate Page

    Venutius
    Moderator

    That’s strange, and you went to settings/buddypress/pages and set the activate page to be the activate page in buddypress?

    #258826

    In reply to: Activate Page

    Venutius
    Moderator

    Ah ok, its the same as for the register page, you create a blank page and link it in the Buddypress page settings.

    #258822

    In reply to: Order posts

    ckchaudhary
    Participant

    Hi,
    BuddyPress has little to do with posts’ order. I can bet its something else. You need to provide more details..

    #258821

    In reply to: Order posts

    Venutius
    Moderator

    I think you need to provide more information about this error, Buddypress does not normally work with posts so I would like to know why you think this is BP? If you unload all other plugins does the issue still appear?

    #258816

    In reply to: Activate Page

    Brajesh Singh
    Participant

    Have you associated the newly created activate page in your BuddyPress settings? You can do it from Dashboard->Settings->BuddyPress->Pages screen.

    If you have already done that then please do post the error message that you are recieving.

    #258810
    danbp
    Participant

    Hi,

    the warnings cames probably because the logout function is called twice.
    Check your theme’s functions.php or see for a specific setting.

    Can you test the standard behave with a Twenty theme and BP, and all other plugins deactivated.
    Remove also the custom code while testing.

    If still an issue, consider this plugin. All is in the title, but it redirects to homepage on logout.

    #258802
    Venutius
    Moderator

    This one should be the answer:

    https://buddypress.org/support/topic/error-404-page-not-found-3/

    However it did not work for me, I’ve raised a thread about it here:

    https://buddypress.org/support/topic/redirect-on-logout/

    It may work for you, since it worked for the other chap

    #258799
    Venutius
    Moderator
    #258794

    In reply to: Forums and Groups

    Earl_D
    Participant

    I believe this shows how to set up sitewide and groups forums together

    Installing Group and Sitewide Forums

    #258789

    In reply to: Trouble uploading File

    danbp
    Participant

    Hi @jeremybivaud,

    without seeing your custom code, it’s difficult to say if you have some issue or conflict with other plugins.

    I can’t help you much for doing your stuff, but have you used the BP_Attachment API ? This can probably help you.

    You may also find some related topics to attachment by searching the forum. 😉

    #258787
    danbp
    Participant

    Oh, i see what you mean now. You want to modify the page title. You used the word WEB in place of site name…. and activity meta title is something different.

    You have to write a function to apply to bp_modify_page_title filter.

    Reference
    You’ll certainly find many snippet for this by searching the forum.

    danbp
    Participant

    i checked the hebrew translation available on GlotPress. It seems to me it is correctly translated.

    Copy/pasting RTL strings doesn’t work here… anyway here what i get (href is LTR here – but is ok in poEdit)
    החשבון שלך הופעל בהצלחה! אתה עכשיו יכול <a href="%s">להתחבר</a> עם שם המשתמש והסיסמא שהכנסת כשנרשמת לאתר.

    #258782
    inzerat
    Participant

    This is part of buddypress. On activity page have meta title description “Side wide Activy – Name of web” a i want change this in bp-custom.php

    #258780
    danbp
    Participant

    This is very vague, can you give details please ?
    Site-Wide Activity – Web is not part of BuddyPress

    #258773
    kyla123
    Participant

    I fixed it. Opened the editor on my theme (style.css) and entered this code at the very bottom:
    #buddypress span.activity { display: none; }

Viewing 25 results - 9,101 through 9,125 (of 68,916 total)
Skip to toolbar