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: 25494
    Brajesh Singh on in reply to: Automated Cover Images per Member Type #24128

    Thank you for you suggestions Mike.

    I believe your suggestion for the global use is nice. Initially, we are going with it. In later releases, we will add support for individual site role(it will need scoping by blog id, not much).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Thank you Mike.

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Cap,
    Thank you for the patience.

    It is easily achievable with this theme. All you need to do is assign a css id for each tabbing when adding.

    Adding a new icon will be as simple as this in css

    
    div#item-nav ul #your-custom-id a:before {
        content: "\f24d"; /*replace the code with icon code from front awesome*/
    }
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Private Replies? #24124

    Thank you Mike.

    I sincerely appreciate you being a valuable member here.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Need help changing 'what's new' text #24123

    Hi,
    Thank you for the questions.

    1. Please use a translation plugin or software(like poedit) to translate.

    2/3. Even though it is feasible, the time it will take is beyond our free support. I regret not being able to support you on this.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    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: 25494

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

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

    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