BuddyDev

Search

Replies

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

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

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

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

    Hi Christopher,
    Thank you for asking and posting the code.
    Here is the code that I had posted on our old forum for one of our members and it still works. It does not need you to change css

    
    function buddydev_disable_firstname() {
    	?>
    <script type="text/javascript">
    	jQuery(document).ready(function(){
    
    	var jq=jQuery;
    
    	jq("#signup_username").on("blur",function(){
    
    	jq("#field_1").val(jq("#signup_username").val());
    
    	});
    
    	});
    </script>
    <?php
    }
    add_action( 'bp_after_register_page', 'buddydev_disable_firstname');
    
    

    It is almost same as yours, just does not need any css modification.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: BP Ajax registration – Ajax Login #2318

    Hi Markus,
    My apologies for the delayed reply.

    The plugin does not contain login window. It is easy to implement login but I haven’t done that due to design issues.

    What do you think will be the best way to have it? How do you imagine for your community(I need design ideas here). please do let me know and I will do it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Rodolfo,
    Which version of BuddyPress & WordPress are you using? Is it a multisite install? Also, the user posting was a normal user or admin?

  • Keymaster
    (BuddyDev Team)
    Posts: 25057