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

    Hi Waseem,
    Thank you for confirming. I am glad it worked.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370

    Hi Tosin,
    Thank you for the question.
    I am updating the plugin to add settings this week. It is still doable via code. Please let me know if you need the code for now?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: [Resolved] Problem to Setting Auto Friendship #36688

    Hi Emanuele,
    You are right. It would do so for all member types.

    Here is the code that only targets the ‘partner’ member type

    
    
    /**
     * Add as friend other user with same member type on user member change.
     */
    add_action( 'bp_set_member_type', function ( $user_id, $member_type ) {
    
    	if ( 'partner' !== $member_type ) {
    		return;
    	}
    
    	$users = new BP_User_Query(
    		array(
    			'member_type'     => $member_type,
    			'populate_extras' => false,
    		)
    	);
    
    	if ( ! $users->total_users ) {
    		return;
    	}
    
    	foreach ( $users->user_ids as $id ) {
    
    		if ( $id == $user_id ) {
    			return;
    		}
    
    		if ( ! friends_check_friendship( $user_id, $id ) ) {
    			friends_add_friend( $id, $user_id, true );
    		}
    	}
    }, 10, 2 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddy press profile tabs #36677
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddy press profile tabs #36667

    Hi John,
    Thank you for the reply.

    1. I am sorry, I do not see any purchase from your current account. Is it from a client’s account? If yes, Please share order id.

    2. Is there any shortcode which is form a free plugin that I can test with? Please link me to the plugin and how to test the shortcode. I will do it quickly.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370

    Hi Atta,
    Thank you for the feedback.

    1. BuddyBlog and BuddyBlog Pro are different plugins and this post was in the context of the BuddyBlog.

    2. Yes, this is still the case. Our plugin is aimed at blogging from profile currently

    3. We believe it is an amazing experience for a social network to blog from profile. I am not sure how moving the creation to a page with a shortcode will make it better than what we have currently. Please help me understand.

    4. No, you are not supposed to tell your users to do that. You can simply add a navigation link pointing to the create tab and tell your users to click on that.

    For example, if your site has the post form at a user’s profile such as http://example.com/members/admin/posts/create/ you can add a dynamic link like
    http://example.com/members/me/posts/create/

    All you need to do is replace the current user’s slug with ‘me’ and add that link. It will take the logged in user to their profile post form.

    We do have the plan to create a shortcode based experience for non BuddyBoss/BuddyPress sites in future but it will take time. We are open to improving the plugin in a way that suits our members need. We haven’t advertised that the plugin allows creating posts from a page and we believe that should have been clear.

    Also, Most of the functionalities of BuddyPress/BuddyBoss work this way. For example creating album or document folders. So, we haven’t done anything unexpected for the users familiar with these plugins.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddy press profile tabs #36664

    Hi John,
    Is it about BuddyPress User profile Tabs Creator Pro plugin? The plugin supports shortcodes.

    Please check the shortcode plugin/author of the plugin to see if that shortcode works beyond the scope of the post content.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370

    Hi SN,
    Thank you for using the plugin.
    From the message it seems you are using a url which is neither supports OEmbed nor is a direct url to a file.

    Mediapress currently only supports urls which are either a direct link to media file or support oEmbed(such as youtube/vimeo etc).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Add Icon in new Profile Tab #36662

    HI,
    Here is the link to the free theme.

    https://buddydev.com/themes/community-builder/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddyblog pro Entry form styling #36661

    Hi RAMPRABANANTH,
    Thank you for the reply.

    1. Changing the Order of custom fields and WordPress fields:- We haven’t added any setting for it yet. I have done it for a client but that needed change in the create.php/edit.php and rendering function. I will update it within next 2 -3 releases to have the control inside the From creation page.

    2. Image, file and extra rich text editors are coming as part of our update next week.

    Regards
    Brajesh