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
    Brajesh Singh on in reply to: Buddy press profile tabs #36677
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    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: 25490

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

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

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: Random Friends of Friend Suggesty Pro #36660

    Hi Dave,
    Do you have a staging site? If yes, Can you please grant us temporary admin access to check why the list is not fetching correct results.

    That will help us assist you better.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi,
    That code is for displayed user’s member type.

    you may use the following instead

    
    
    /**
     * Inject classes to body based on logged user's member types.
     *
     * @param array $classes array of css classes.
     *
     * @return array
     */
    function buddydev_add_membertype_to_body_class( $classes = array() ) {
    
    	if ( ! is_user_logged_in() ) {
    		return $classes;
    	}
    
    	$member_types = bp_get_member_type( get_current_user_id(), false );
    
    	if ( ! $member_types ) {
    		return $classes;
    	}
    
    	foreach ( $member_types as $member_type ) {
    		$classes[] = 'logged-member-type-' . $member_type; // member-type-student etc.
    	}
    
    	return $classes;
    }
    
    add_filter( 'bp_get_the_body_class', 'buddydev_add_membertype_to_body_class' );
    
    

    This adds logged user’s member types.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: [Resolved] About Buddyblog #36657

    You are welcome.