Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25448

    Hi Luca,
    can you please click on the link(in the notifier) and post me the url of page.

    Most probably it is a theme issue now since I am using #acomment-commentid as anchor point for comment(default in BuddyPress).

  • Keymaster
    (BuddyDev Team)
    Posts: 25448

    Hi Leo,
    I will be looking at this issue in next 2-3 days. Currently, I have my hands full with our upcoming theme. Will update you then.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25448
    Brajesh Singh on in reply to: Adding Activity Stream Back into BuddyPress #3897

    Hi Brian,
    Welcome to BuddyDev.

    Can you please explain what are you trying to accomplish? If you can explain, I will be able to assist better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25448

    Hi Christian,
    try adding this to your css

    
    
    li.bp-extended-user-groups-widget-item {
    float:none;
    clear:both;
    }
    
    

    If that does not work, you can add the following lines too(clearfix hack)

    
    
    li.bp-extended-user-groups-widget-item:after,
    li.bp-extended-user-groups-widget-item:before {
     content: " ";
     display:table;
    }
    
    li.bp-extended-user-groups-widget-item:after{
     clear: both;
    }
    
    

    that will do it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25448
    Brajesh Singh on in reply to: Lightbox remove white box #3893

    Hi Christian,
    You don’t want the commenting functionality? Please let us know here


    @ravisharma
    will get back to you tomorrow with details.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25448

    Hi Minoo,
    I am sorry for the inconvenience.

    can you please rephrase your question. I am not able to understand the issue properly.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25448

    Hi Javier,
    you can replace this line

    
    
     $user_email = '[email protected]'; 
    

    By following

    
    $field_id = "Your email field ID";
    $email = xprofile_get_field_data( $field_id, $user_data->id );
    
    if ( !is_email( $email ) ) {
        $email = $user_data->user_email;
    }
    
    

    That will do it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25448

    Hi Javier,
    do you have the email field setup?

    You can filter on ‘retrieve_password_message’ and send mail right there. After that return empty string and WordPress will not send another email.

    hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25448

    Hi Jonas,
    Welcome to BuddyDev.

    1. Thank you for reporting. @ravisharma is looking at it and will get back to you.
    2. Notification if someone directly replies to a comment may be a good idea
    3. Notifying friends. I don’t think that is a good idea. It will lead to a lot of notification.

    Thank you for your efforts in translation, Please send me the files at [email protected]

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25448
    Brajesh Singh on in reply to: Buddypress and Yoast #3863

    Hi Alexandra,
    Please remove the code from above post and give it a try

    
    function buddydev_author_redirect_to_profile() {
    
        if ( is_author() && function_exists( 'bp_core_redirect' ) ) {
    
            $author_id = get_queried_object_id();
            bp_core_redirect( bp_core_get_user_domain( $author_id ) );
        }
    }
    add_action( 'template_redirect', 'buddydev_author_redirect_to_profile' );
    
    

    Put it in your functions.php and let me know if it works or not?

    Thank you
    Brajesh