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

    Hi Chris,
    Thank you for reporting.

    I will check with the new Profile Search template an update you within a week if we can make these compatible.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25336

    Hi marcin ,
    Welcome to BuddyDev.

    I am sorry, I haven’t used wisepro chat, so I am not familiar with what they offer out of the box. I can still assist but I need to know a few things:-

    1. I believe, They should have this option out of the box. Have you asked them about it? If they do not support it, I will assist you(will check the code feasibility).

    2. Please clarify what you want to achieve here. I am sorry but I could not understand it. Please help me understand it better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25336

    Hi Adam,
    Please copy plugin/mediapress/templates/mediapress/default/gallery/views/grid-photo.php to your theme/mediapress/default/gallery/views/grid-photo.php and modify it.

    The loop you see there is exactly same as a post loop(extended).

    It is not used for lightbox though. Light box, please see “mediapress/core/ajax/class-mpp-ajax-lightbox-helper.php”

    Regards
    Brajesh

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

    Thank you Mike.

  • Keymaster
    (BuddyDev Team)
    Posts: 25336

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

    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