BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: Mediapress Gallery profile page redirect question #2350

    Hi Roberto,
    Thank you.

    It is possible to do so but I have a few questions.

    How the user will be able to list all galleries? If you can help me understand that I can put some sample code here.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: Buddypress branded login formatting #2349

    Hi Brandon,
    My apologies for the delayed reply.

    Ther are multiple way to make it better. At the moment, It is using your default page template and injecting the theme compatibility content.

    If you want to take full control of the whole layout, you can copy “blogin” folder from bp-branded-login to your theme and make it compatible with your theme(Make sure to keep the form code and use any template structure you like)

    Other way, if you need simple modification like moving the form to center, you can do it via css like this

    
    
    #loginform {
     width: 500px;
    margin: 0 auto;
    }
    
    

    Please let me know which way you will like to go and I will assist further.
    PS: I did not get the idea what you mean by using whole page, do you mean making the text boxes expand to whole page? If yes, Please let me know and I can assist.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: BP redirect to profile after login problem #2348

    That is very strange. What did you do to solve it?

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: Homepage redirects to profile idea #2347

    Hi Christopher,
    good to know that you have figured it out 🙂
    Here is some code that will do the same

    
    
    add_action( 'template_redirect', 'buddydev_rediretc_to_profile' );
    function buddydev_rediretc_to_profile() {
    	
    	if ( is_user_logged_in() && is_front_page() ) {
    		wp_safe_redirect( bp_loggedin_user_domain() );
    		exit( 0 );
    	}
    }
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: BuddyPress Ajax Registration – help #2340

    Hi Alice,
    Can you please point me to your site? If I remember correctly, Kleo comes with its own set of popups?

    It will be easier for me to assit you after looking at the site(with other questions too).

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: social networks on buddypress user profiles #2339

    Hi Alice,
    This plugin seems to be what you are looking for
    https://wordpress.org/plugins/buddypress-social-icons/

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Thank you. I will get back to you a little bit late today with testing(and fixes if required)

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: BP redirect to profile after login problem #2333

    Hi Christopher,
    It is a caching issue on your site. Please check if you are using a caching plugin or has some sort of server side cache enabled.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: Requiring only Username at sign up. #2330

    Thank you for the kind words 🙂

    Instead of hiding via css, I suggested the other plugin because that will make sure that a field marked as non editable can not be edited(Will be excluded from the form page).

    PS: It is a pleasure to have you here. You are welcome to ask any question here and no worries about membership. I sincerely appreciate the feeling 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: Requiring only Username at sign up. #2328

    You can put this code in your bp-custom.php or theme’s functions.php

    It will be only injected on register page. Yes, The display name will be set to username.

    It has no relation with change username plugin, so will certainly work with that without any issue. Please give it a try and let me know.

    PS: Instead of hiding on profile edit, why don’t you make the firstname field non editable, A user will not be able to change it after registration. You can use my other plugin Non Editable Profile field for the same.