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

    Hi Richard,
    Please try using

    
    
    orderby = 'random'
    

    That should do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Daniel,
    Thank you for the question.

    If you do not want to use translation, you will need to override template if using legacy template pack.

    Please copy parent-theme/buddypress/activity/post-form.php (if not present, you will need to copy it from plugin/buddypress/bp-templates/bp-legacy /buddypress/activity/post-form.php

    If you are using BP Nouveau, the above method will not work.

    you can use the following code in bp-custom.php or functions.php of your theme

    
    
    add_filter( 'bp_core_get_js_strings', function ( $params ) {
    
    	if ( ! isset( $params['activity'] ) || ! isset( $params['activity']['strings'] ) ) {
    		return $params;
    	}
    
    	$params['activity']['strings']['whatsnewPlaceholder'] = sprintf( __( "Hello, What's new, %s?", 'buddypress' ), bp_get_user_firstname( bp_get_loggedin_user_fullname() ) );
    
    	return $params;
    }, 100 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Featured members / Own slug #31758

    Hi Sandrine,
    Thank you for using the plugin.

    The tab on members directory does not link to any page. The reason is the featured members does not have a specific page associated with it.

    If you want to create a page with featured members, please use the shortcode from here

    https://buddydev.com/plugins/bp-featured-members/#shortcode

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Thank you. I or @ravisharma will update you in next 2 days.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Help with categories #31756

    Hi Ruben,
    Those fields are automatically saved as post meta for you.

    1. You can use get_post_meta() to retrieve them. The “key” in the custom fields is used as meta key.

    2. You may be right. We do not support Youzer due to our experience with the plugin and its support.

    3. Thank you. I see it. It is not us doing anything special. It is the WordPress editor. We should still do something about it. I will be adding a filter to toggle link functionality.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Re-tweet functionality in BP #31755

    Hi Daniel,
    Here are two others

    https://wordpress.org/plugins/bp-activity-share/
    https://github.com/imath/bp-reshare

    I am not sure which one works better. Since the one you linked is the most recent one, it has a better chance.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Help with categories #31747

    Hi Ruben,

    1. the fields are shown but when you publish and see the publication no field of the new ones that have been created appears :-

    Those are saved as post meta and the plugin does not know what they are. You need to add that in your template file.

    2. I also see that the selector does not work, also I see that with divi the whole structure of new post and it does not look good to the user :-

    I haven’t tested with Divi. We have tested with normal WordPress and it works great for us. For any 3rd party incompatibility, either we work on it or as a webmaster, you do it on your own.

    3. The idea is good but I see some errors that should not be seen, for example in the text editor if the user gives you to insert a link the links of the whole web appear

    I am sorry but it seems there is something wrong with your setup. I have no idea what you are referring to. We are using standard editor and ikt is working fine for us.

    I will suggest exploring the plugin or a normal WordPress/BuddyPress installation. Also, the current custom field via code is meant for developers.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Custom Recent visitor code #31744

    Hi Carsten,
    Thank you for telling me about the documentation expectation. I will be noting it and making sure to streamline in future.

    These plugins have grown with time and there have been a lot of change. There was no shortcode or widget or directory tab or even profile tab in the initial version. We need to keep updating the plugin docs with these changes. We will be adding link to our documentation in the plugin.

    Now about your question:-

    1. If you use the above code, It will list the most recent 10 visitors of the logged user. There is no concept of reset. If there are only 2 visitors in last 24 hours and you use the above code, It will list 2 users only.

    The list will be zero only if there are no recent visitors in last 24 hours.

    Hope it clarifies.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Carsten,
    Thank you for confirming.

    Regards
    Brajesh