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: 25490

    Please share the exact shortcode(with options) that you are using.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: [Resolved] BuddyBlog throwing errors #34187

    Hi Roberto,

    I am sorry for the inconvenience.

    Please visit Dashboard->Settigs->BuddyBlog and make sure to update the relevant settings and save. That will fix the notices.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: Buddypress User Badges in Activity Feed #34186

    Hi Ted,
    Thank you for the patience.

    I had a look at the kleo theme and BuddyPress in general.

    The display name in activity is not built dynamically and there are no hooks available there.

    We can use this code to display the badges of activity author

    
    <?php if ( function_exists( bp_user_badges_get_user_badges_html ) ) {
    	echo bp_user_badges_get_user_badges_html( bp_get_activity_user_id() );
    }
    

    But it needs to be put somewhere in the kleo/buddypress/activity/entry.php (You can copy this file to child theme) and put the code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: Buddypress User Badges in Activity Feed #34175

    Thank you Ted.
    Please allow me to check and get back to you by tomorrow.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Corrado,
    Thank you.
    That’s good to know. I am glad you resolved it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Benson,
    Welcome to BuddyDev forums.

    At the moment, you can edit the js file and set it
    https://github.com/sbrajesh/bp-activity-autoloader/blob/master/_inc/activity-loader.js#L21

    You can change 50 to may be 200 and that should work.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: Pages Redirecting Wrong #34170

    Hi Robb,
    I had a look.
    You are not using BuddyPress Registration. The page you are linking seems to be a bbPress forums registration and this seems to be expected behaviour for bbPress forums.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Bick,
    Thank you.

    Sure, you can use this code for changing the time.

    
    
    /**
     * Change the number of minutes used as interval for considering user online.
     */
    add_filter( 'bp_user_query_online_interval', function ( $interval_in_minutes ) {
    	return 5;// 5 minutes.
    } );
    

    Please put it in wp-content/plugins/bp-custom.php or your-current-active-theme/functions.php

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: Contact form – Show on profile #34168

    Hi Tom,
    Thank you.

    It makes a lot more sense now. One of us will get back to you tomorrow with the feasibility.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: [Resolved] redirect the "view" tag in mediapress #34166

    Hi Corrado,
    Thank you for the reply.

    I am sorry but I do not see any issue with the above code. It does not seem to have any effect on logged in/out for me.

    Can you please recheck(Please make sure you copy the code from the forum and not from the email notification).

    Regards
    Brajesh