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: 25489
    Brajesh Singh on in reply to: Recreating from another app #39588

    Hi,
    Please link me to your site and a page with media. I will check the media src and assist you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Activity Plus Reloaded for BuddyPress #39587

    Hi,
    Thank you for reporting the issue. Please allow us to look into it and get back to you by 20th July.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Buddy badge no showing #39586

    Hi Steven,
    Thank you for using the plugin.

    Please let me know which theme are you using? Also, Please share me a link to the screenshot to help me understand the issue better.

    I will be assisting you with it after your reply.

    regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: [Resolved] Compliments isnt accessible #39585

    Hi Steven,
    Welcome to BuddyDev support forums.

    Please share the following details:-

    1. Are you using BuddyPress or BuddyBoss?
    2. Which theme are you using?
    3. Which plugin is being used for complement?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Perfmatters & member type pro conflict #39584

    Hi Tosin,
    Thank you.


    @ravisharma
    will be assisting you with it early next week.

    regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Recreating from another app #39571

    Hi,
    In case of old database, you only need to impost bthe Posts and post meta table.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Please use this example. In the above code, you are using $group object which si not available.

    
    
    function child_update_profile_group_name( $name ) {
    
    	if ( $name == 'Settings' && is_user_logged_in() && in_array( 'subscriber', wp_get_current_user()->roles ) ) {
    		$name = 'Settings1';
    	}
    
    	return $name;
    }
    
    add_filter( 'bp_get_the_profile_group_name', 'child_update_profile_group_name' );
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Custom Fields #39569

    Hi Ricardo,
    Welcome to BuddyDev support forums.

    I am sorry, there is no way to allow adding custom fields on upload screen. We do have some code snippet to allow it on Edit gallery media and edit media screen.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Thank you for the question. There are multiple ways to do it. You can either use the action hook or do a template override.

    Based on your template pack( I am assuming Nouveau), you can copy the post-form.php from wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/activity directory to your theme/buddypress/activity/post-form.php and add the text as needed.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Thank you.