BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] Ajax Buddy press registration. #2277

    Thank you for the kind words David. I am glad, I was able to help 🙂

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi,
    Just wanted to let you know that I have fixed this issue in MediaPress now.

    It was happening when you edited someone’s gallery from front end. I fixed it in the commit
    https://github.com/buddydev/mediapress/commit/a994d63afbaa74197d7886f79d794307fc01fb13

    Can you please upgrade and check if you have some time?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: Lightbox setting not having effect #2275

    Hi,
    I am sorry for all the delay.
    It is included in MediaPress now.

    After upgrading, please visit MediaPress->settings->Theme panel and make sure that “Open photos in lightbox if gallery is clicked?” is set to yes. That will open all photo galleries in lightbox(including widgets/directory screen too). Please make sre to save the settings(even if it was saved earlier, after upgrade, please do it again).

    Hope that helps.

    PS: Here is the commit info if you want to see what changed.
    https://github.com/buddydev/mediapress/commit/d09300fd11185f437bc8ce247903b88393b1478a

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] Ajax Buddy press registration. #2273

    Hi David,
    Thank you for the reply.

    This plugin does not work with all captcha solutions but we recommend using https://wordpress.org/plugins/buddypress-captcha/

    This will work perfectly with the BuddyPress Captch plugin( I had modified both plugins to work together, and it is tested).

    Is it feasible for you to use this solution instead?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] Mediapress and X Theme. #2270

    Hi Curt,
    Marking it as resolved as per our email communication.

    For others, if you have nav menu issues, The X theme does not contain proper css for BuddyPress Options nav( sub nav ) menu. Putting following line will make the space look better

    
    #item-body #subnav ul li { margin-right: 10px; }
    
  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    You are welcome Hans. I too believe that this should be by default. May be we should open a ticket for enhancement?

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi Hans,
    I am sorry, I should have read the requirement carefully. Here is the updated code

    
    
    function buddydev_update_myaccount_links( $wp_admin_bar ) {
    	
    	if ( ! is_user_logged_in() ) {
    		return ;
    	}
    	
    	$profile_url = bp_loggedin_user_domain();
    	
    	$wp_admin_bar->add_menu( array(
    		'id'        => 'my-account',
    		'href'      => $profile_url
    		
    	) );
    	
    	$wp_admin_bar->add_menu( array(
    		'id'     => 'user-info',
    		'href'   => user_trailingslashit( $profile_url . BP_XPROFILE_SLUG ),
    		
    	) );
    	
    	
    }
    add_action( 'admin_bar_menu', 'buddydev_update_myaccount_links', 100 );
    

    Please do let me know how it goes? The avatar and the name will point to the profile now.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi Hans,
    Thank you for asking.
    can you please give it a try and let me know if it works as expected?

    
    
    function buddydev_update_myaccount_links( $wp_admin_bar ) {
    	
    	if ( ! is_user_logged_in() ) {
    		return ;
    	}
    	
    	$profile_url = bp_loggedin_user_domain();
    	
    	$wp_admin_bar->add_menu( array(
    		'id'        => 'my-account',
    		'href'      => $profile_url
    		
    	) );
    	
    	$wp_admin_bar->add_menu( array(
    		'id'     => 'user-info',
    		'href'   => $profile_url,
    		
    	) );
    	
    	
    }
    add_action( 'admin_bar_menu', 'buddydev_update_myaccount_links', 100 );
    
    

    Looking forward to hear your feedback.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] Filter for favorites notifications #2261

    It is included in 1.1.2. Marking it as resolved now.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] Mediapress and X Theme. #2260

    Please Pm me the details here or mail me at brajesh@buddydev.com

    Thank you