BuddyDev

Search

Replies

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

    Hi David,
    Please do mail me the credentials for the site. I have modified the ajax registration plugin for your purpose and will install/update on the site. Please drop me the details on brajesh@buddydev.com

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Felicia,
    My apologies for the delayed reply.

    There seems to be a problem with MediaPress Gallery edit. I am working on it and will have a fix late tonight.

    I will also be adding some tool(hopefully today) to move the gallery back.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Comments are not visible in relation to the gallery #2179

    Hi Felicia,
    My apologies for the delayed reply.
    Please visit Dashboard->MediaPress->settings and on Theme tab, please make sure that you have enabled the gallery/media comment.
    That will fix it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: [Resolved] Nextgen Conflict #2178

    Hi,
    Which version of the plugin and theme you are using?
    I installed nextgen gallery, protopress theme and tried but could not reproduce the issue.

    Can you please tell me how to reproduce it. Will be happy to help.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Hide Friends of a User from Other users. #2177

    Hi Vicki,
    Have you put this code in bp-custom.php

    I tried the code and it is working perfectly for me. Can you please post me a screenshot to show the issue?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: [Resolved] Auto Welcome PM #2175

    Thank you Joshua.
    Appreciate you posting the code. It might be useful for others.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: [Resolved] How to Create a Custom Page for Groups? #2173

    It has been more than a week now. Closing it as resolved. Please feel free to open a new topic if needed.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Buddyblog, images/media support. #2172

    Hi Peter,
    I am sorry, been away for a week. I will be working on the new things from today onwards and will keep you updated.


    @leopro

    Hi Leao,
    I am sorry for the inconvenience. Need a few hours to test it today and will get back to you. Unless I have made some mistake, just changing the slug should not cause such issue.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Update on forum replies #2171

    Thank you Israel and Joshua.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: BuddyBlog new post link to main menu #2170

    Hi Toan,
    Please put this code in your bp-custom.php or functions.php of your theme and let me know if it works.

    
    
    add_filter( 'wp_nav_menu_items', 'buddyblog_custom_newpost_link' );
    function buddyblog_custom_newpost_link($menu) { 
    	
    	if ( ! is_user_logged_in() ) {
    		return $menu;
    	}
    
    	if( function_exists( 'buddyblog_get_home_url' ) ) {
    		
    		$new_post_url  = buddyblog_get_home_url( get_current_user_id() ) . 'edit' ;
    		$menu = $menu . '<li><a href="' . $new_post_url . '">' . __('Create Post') . '</a></li>';
    	}
    	
    	return $menu;
    }
    

    Hope that helps.

    Regards
    Brajesh