Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,301 through 5,325 (of 68,946 total)
  • Author
    Search Results
  • #302820
    missbrimichelle
    Participant

    @shanebp Thank you. I’e tried that as well. I’m currently using the themify ultra theme. I tried doing this on another site of mine that I’ve not yet updated to the new Buddypress using same theme and updated WP. It works on this site. Could it be a bug with the buddypress update? Is there a way for me to download the previous version of buddypress?

    #302818
    missbrimichelle
    Participant

    @shanebp Thanks for the suggestion though I have already tried deactivating all plugins including PM Pro. The only difference there has been was to updating Buddypress and WP to the current versions but they should be compatible with each other right?

    mocreate
    Participant

    Many thank yous for the reply! Would this be a function I would pop into functions. php — trying to understand if this would live there or where it should be placed.

    I’m using the latest version of Buddypress and Nouveau to hook into a custom theme we’re using.

    mocreate
    Participant

    All,

    Hi! I’ve tried every remedy on Buddypress and other sites to get Alphabetical to be the default view at:

    https://familytravel.org/groups/fta-media-members/members/

    Still nothing. It’d be great if the URL would help the sort, but is there a plugin or something I’m missing to get this working? I’ve seen the help topics here, but they’re unfortunately not the solution for this.

    Any help appreciated!

    #302785

    In reply to: User Based Shortcode?

    Michael
    Participant
    #302781
    manuuu1127
    Participant

    So, I unchecked the “wordpress buddypress profile syncting” box and i was able to at least receive an activation email, which gets sent to junk mail…but once activated, i still can’t login.

    Now I am going to attempt to try registering and logging in after disabling the “allow users to login with wordpress”

    #302780
    shanebp
    Moderator

    If you deactivate the BuddyPress plugin, can you log-in without the error messages ?

    #302773

    In reply to: Sorting activities

    Varun Dubey
    Participant

    Hi @sweeny
    You can try Activity Bump

    shanebp
    Moderator

    These are the forums for BuddyPress.
    Please send your question to BuddyBoss – the creators of BuddyBoss Wall.

    #302754
    shanebp
    Moderator

    You can use the scope argument for that.
    Try this in your theme > functions.php or in bp-custom.php

    function bp_activities_user_friends_scope( $retval ) {
    
        if ( bp_is_activity_directory() ) {
            $retval['scope'] = 'friends';
        }
     
        return $retval;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'bp_activities_user_friends_scope' );
    #302753

    In reply to: Problem with form

    shanebp
    Moderator

    I doubt that the issue is in ‘the template’.
    The issue is not due to BuddyPress.
    The issue manifests when you are using BuddyPress.

    I’ve already suggested ways for you to narrow down the source of the issue.
    Beyond that, there is little that anyone here can do to help you.

    #302751

    In reply to: Problem with form

    shanebp
    Moderator

    function ghostpool_reset_password_success is not a BuddyPress function.

    Some code on your site, perhaps in a plugin or your theme, is adding that function.
    You may need to switch themes and/or deactivate other plugins in order to find the code that is adding that function.

    #302728
    ng95
    Participant

    Hi Guys
    I solved my pb.

    I was installing my wordpress site using Cpanel. Last time i decided to install it without Cpanel and now i received buddypress email.

    Please try my solution and tell me if it works for you.

    #302725
    shanebp
    Moderator

    Please use the code button when sharing code.

    It would be a useful option in the WP backend.

    For now, you need ftp or cpanel access to the site.
    You can place that code in your theme > functions.php
    If it does not work in that file, try placing it in bp-custom.php

    Venutius
    Moderator

    Hi there, according to this: https://codex.buddypress.org/emails/email-tokens/ there’s a global token called {{recipient.username}}. Does that help?

    #302694
    Venutius
    Moderator

    Hi there, I’d first try deactivating all plugins apart from BuddyPress and see if that works.

    #302690

    In reply to: Tag friends in a photo

    Venutius
    Moderator

    Not seen this as a feature but this question should go to whoever is providing your support for images in BuddyPress – rtMedia or MediaPress?

    #302685
    shanebp
    Moderator

    Put this in your theme functions.php or in bp-custom.php

    function kjc_remove_edit_tab() {
         bp_core_remove_subnav_item( 'profile', 'edit' );
    }
    add_action( 'bp_ready', 'kjc_remove_edit_tab' );
    #302681
    suehanen
    Participant

    Dang, I thought you had solved the problem, unfortunately, nothing changed. The strange thing is, the Log in link (on the top right) was there without having the buddypress screen option checked. I don’t understand why. I deactivated all plugins except BP and the Register link is still missing.

    #302659
    Venutius
    Moderator

    Ah ok,

    So first of all you need a child theme, there’s plenty on plugins available that wil set one up for you.

    Next you need to know which BP Template is being used by going to Settings>BuddyPress>Options, here you will see it’s either set to Legacy or Nouveau.

    Next create a directory in your childtheme called buddypress/members/single/notifications

    Next copy the file plugins/buddypress/bp-templates/(bp-nouveau or bp-legacy)/buddypress/members/single/notifications/notifications-loop.php to the notifications you created in your childtheme.

    You can then edit this file to add your changes. in here you will find the function call I mentioned for you to add the args to.

    #302657
    Venutius
    Moderator

    Hi there, maybe these pages will help:

    Theme Compatibility

    #302652

    In reply to: Can You Help Me?

    Venutius
    Moderator

    Hi there, I don’t think BuddyPress will launch a front end post submission extension. You could raise this as a new enhancement request in Trac if you like but I’d not be very hopeful that this would be forthcoming.

    #302651

    In reply to: Registration Error

    Venutius
    Moderator
    #302650

    In reply to: Registration Error

    Venutius
    Moderator

    By the looks of things this is a bug, the WP Function get_privacy_policy_url() was introduced in WP Version 4.9.6 however the BP function bp_signup_requires_privacy_policy_acceptance() does not check for that version before trying to execute get_privacy_policy_url(). Presumably you are using a previous version of WP and so this function is throwing an undefined function error. I’ll raise a bug report for this.

    A possible fix for this is to add the following line to plugins/buddypress/bp-members/bp-members-template.php line 2421, just after the function bp_signup_requires_privacy_policy_acceptance() is declared:

    if ( version_compare( $GLOBALS['wp_version'], '4.9.6', '<' ) ) return false;

    #302635
    mrjanvier
    Participant

    Thank you for youre response,

    Do you mean with debug with 2017 theme, just to change the theme in 2017?
    I deactived all the plugin and changed in the 2017 theme. Onley the buddypress plugin is active and the problem is still there. So maybe it’s an error in buddypress itself? cause i experience it with 2 websites when i’m composing a message and use controle enter to add an person, i can’t add no more. Are there others who have the same problem?

    greetings

Viewing 25 results - 5,301 through 5,325 (of 68,946 total)
Skip to toolbar