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: 25335
    Brajesh Singh on in reply to: Pics/Video Reorder #23227

    Hi Jack,
    I am sorry for the inconvenience. I have asked Ravi to allow me assist you on this.

    Will it be feasible to allow me a login to your site? I need to see it.

    There seems to be an issue as you are unable to reorder. We are unable to create it on our local development and seeing it on your site will help us understand and fix it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335

    Hi Kristian,
    To do it you will have to do 2 things.

    1. override compose file(or use css to hide the subject box)
    2. Add your own handler for creating message.

    In that handler, you can auto generate a subject and it will work.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335

    HI Shayne,
    Please add this

    
    define('BUDDYBLOG_ARCHIVE_SLUG', 'some-posts');
    
    

    Let me know if that works or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335

    Hi Richard,
    If you are using the version from github, please recheck.

    Here is the expected behaviour:-

    1. For new uploads, if there is only one media , the activity will appear on media as well as gallery wall. So will be activity comments. This is for new uploads only.

    2. For multiple uploads, the activity and comments will appear on a gallery wall as they are on gallery media not on individual(It already used to happen from the past).

    Please make sure you update from the github and then recheck it by disabling any custom code for MediaPress.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335
    Brajesh Singh on in reply to: Media Gallery not showing #23213

    Hi Colin,
    Thank you.

    You can either use the media widget or the mpp-list-media shortcode for the same
    https://buddydev.com/mediapress/shortcodes/mpp-list-media/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335
    Brajesh Singh on in reply to: Email notification for registration #23212

    Hi Fabrice,
    We will have a release in next 2-3 days.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335

    Hi Richard,
    I have gone with a very moderate approach for now. When there is only one media attached to the activity, I mark that as media activity and that makes the activity comments appear on media.
    https://github.com/buddydev/mediapress/commit/e472b532ecb4e165832faaab5b8326996a2139c6

    Please update from here
    https://github.com/buddydev/mediapress

    Try uploading single media to activity and check how it works.

    I will be updating the wording for activity actions too later today. Hopefully, we can push a release in next 2 days.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335
    Brajesh Singh on in reply to: [Resolved] Buddypress Anonymous Activity #23201

    HI Nic,
    Please upgrade to 1.0.9 and then, you can add the following code to your bp-custom.php

    
    /**
     * Disable UI.
     */
    add_filter(
    	'bp_anonymous_is_valid_screen',
    	function ( $valid ) {
    		return false;// don't show ui.
    	}
    );
    
    /**
     * Custom enable for certain groups.
     *
     * @param bool   $is is enabled.
     * @param string $context current context.
     * @param int    $context_id context id.
     */
    function bpanonymous_custom_enable( $is, $context, $context_id ) {
    	if ( 'group' !== $context ) {
    		return $is;
    	}
    
    	$allowed_groups = array( 1,2,3,4 );// please change with the group ids.
    
    	return in_array( $context_id, $allowed_groups );
    }
    
    add_filter( 'bp_anonymous_activity_is_anonymous_comment', 'bpanonymous_custom_enable', 10, 3 );
    add_filter( 'bp_anonymous_activity_is_maybe_anonymous_comment', 'bpanonymous_custom_enable', 10, 3 );
    add_filter( 'bp_anonymous_activity_is_anonymous_post', 'bpanonymous_custom_enable', 10, 3 );
    
    

    Please make sure to change this

    
    	$allowed_groups = array( 1,2,3,4 );// please change with the group ids.
    
    

    With correct group ids.

    Any update/comment on these groups will be anonymous.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335

    Thank you for the update. I am glad it is resolved.

    Best regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25335
    Brajesh Singh on in reply to: Plugin takeover #23188

    Hi Tosin,
    Thank you for the suggestion.

    We have a competing product with them which is free and a pro version has been in development(with support for multiple post types etc).

    We can’t take over that plugin, but I do hope that when we release BuddyBlog Pro next month, It will have a super set of features from the plugin.

    Regards
    Brajesh