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

    You are welcome. I hope that WooCommerce works for you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: @mention autofill on custom dashboard page #23518

    Hi Nic,
    You may try this

    
    add_filter( 'bp_activity_maybe_load_mentions_scripts', 'buddydev_enable_mention_autosuggestions', 10, 2 );
     
    function buddydev_enable_mention_autosuggestions( $load, $mentions_enabled ) {
        
        if( ! $mentions_enabled ) {
            return $load;//activity mention is  not enabled, so no need to bother
        }
        //modify this condition to suit yours
        if( is_user_logged_in() ) {
            $load = true;
        }
        
        return $load;
    }
    

    That should do it on all pages.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Torben,
    Thank you for asking.

    That is the default limit. You can change it like this

    
    /**
     * Change default number of forums.
     */
    add_filter( 'pre_option__bbp_forums_per_page', function ( $val ) {
    	return 100;// change it to the number.
    } );
    
    

    Please put this in your functions.php or bp-custom.php and that should do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    Thank you for the question.

    The job of this plugin is to add notification not listing them.

    By default, BuddyPress shows notifications in adminbar as well as on user profile.

    We do have a plugin that provides shortcode and widgets
    https://wordpress.org/plugins/buddypress-notifications-widget/

    You may use it.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Torben,,
    I am sorry for the issue. I haven’t seen it earlier. Will check and get back to you today. If it is a bug, we will have an update in next 24 hours. I will keep you updated.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Torben,
    Please allow me to check and get back to you. Group Types should work(with/without the plugin). Community Builder supports them out of the box.

    I will get back to you today after testing this plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Richard,
    Once you have added the code for filter in your bp-custom.php, It will behave like I explained earlier.

    It will show on as gallery comments only if you did not use the code or the number of media was greater than 1.

    It applies to new uploads and not retrospectively.

    Please give it a try.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Richard,

    1. Once you add the above code, if a user uploads single media in activity, it will treat any comment on that media as media’s activity.

    2. If there are more than 1 media attached to same activity, It will be treated as gallery activity.

    Hope that clarifies.

    This is a work around for now. For last few days, I have been rethinking our approach for comments and there are better ways to handle it. Since we will need to migrate user’s old activities to our system, I am keeping it in our future major milestone.

    MediaPress is going to be our major priority in future. I plan to restart the active development of MediaPress around end of August and we will have the comments as well as a lot major updates after that.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Problem uploading media from mobile #23498

    Hi Max,
    Thank you for testing. Can you please do one more test to help me better.

    Please visit to a gallery on your profile and then click on Add Media and let me know if this screen allows multiple selection or not? Or is the issue happening on the gallery screen(I assumed it to be activity).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Christian,
    Thank you for confirming.

    About listing images. Since you have removed them from the WordPress media list, you will need to manage them via MediaPress->All Galleries and going to individual gallery.

    It is possible to add a page to list/manage all media in one place but it is not in our development goals.

    Thank you
    Brajesh