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
    Brajesh Singh on in reply to: [Resolved] Mediapress #24122

    Hi Jennifer ,

    Thank you for using MediaPress.

    Please share a screenshot and point me the issue or what you are trying to accomplish. I will assist.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    Thank you for reporting it.

    It is a bug in bbPress shortcode. Their pagination code doe snot work with current page(if permalink is enabled).

    Please add following to your wp-content/plugins/bp-custom.php
    or in your theme’s function.php

    
    
    add_filter( 'bbp_before_bbp_topic_pagination_parse_args', function ( $args ) {
    
    	if ( ! function_exists( 'bp_is_user' ) || ! bp_is_user() ) {
    		return $args;
    	}
    	$args['base'] = add_query_arg( 'paged', '%#%' );
    
    	return $args;
    } );
    
    

    That should fix the pagination. Please let me know if it works or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Carsten,
    Thank you for the question.

    The private message link is dynamic, so you can not add it like this. By dynamic, I mean the nonce not the url. WE can handle dynamic url pretty well.

    It is still doable but will need to write a filter for our url parser.

    Also, you are right . Currently, selecting other profile is an issue too. Overall, I guess, there is no straightforward way to implement it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Simple recruit-count system #24109

    Hi,
    This is beyond what we can provide as support here. It falls in the domain of plugin development as you are not looking for a few lines of code but complete functional plugins.

    We may be able to do it sometimes in future(depending on our priority) but not now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Sorry,
    It seems there were confusion about my answer. Since you had asked how to create the field type, my suggestion was to look at the code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Role Based badges #24106

    Marking resolved as per the other thread.

    Regards
    Brajesh

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

    You are welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Carsten,
    Thank you for confirming. I hope the legacy suits your need.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Automated Cover Images per Member Type #24101

    Hi Mike,
    Thank you for the feedback.

    1. You are right, There is no button for removal under predefined badges(roles). We will add that it in next release.

    For now, Please use the “Upload Image” button to assign new badge to it. It will work.(Please check if it saved).

    2. The cover image will be available tomorrow.

    3. For badge multisite compatibility(multi network active or multi blog mode) we are facing some issue. The roles are specific to a site and not the network. How do we handle roles badge on a site? Do we use the badge from the main site or we allow uploading on each site?

    Please let me know your thought.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Admin notifications #24100

    Hi,
    Sure you can use the filter ‘bp_local_group_notifier_skip_notification’

    Based on current user, return true for everyone except Teachers.

    It will skip the recording for them.

    Please see
    https://github.com/sbrajesh/bp-group-activities-notifier/blob/master/bp-group-activities-notifier.php#L116

    Regards
    Brajesh