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

    Hi Carsten,
    Thank you.

    You have done it correctly.

    Uploading new avatar should take this size. If it does not work, please point me to the page section. Most probably the theme page/code is using fixed width while fetching avatar.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi Again,
    I see that WooCommerce provides a hook. So, If it is WooCommerce registration,
    adding the following code to bp-custom.php

    
    
    /**
     * Add user registered via WooCommerce to current network.
     * @param $user_id
     */
    function buddydev_add_wc_user_to_network( $user_id ) {
    	if ( ! function_exists( 'mnetwork_add_user' ) ) {
    		return ;
    	}
    
    	$blog_id = get_current_blog_id();
    	mnetwork_add_user( $user_id, $blog_id );
    
    }
    
    add_action( 'woocommerce_created_customer', 'buddydev_add_wc_user_to_network' );
    

    And then registering a user will work. Can you please try that.

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi Jeremy,
    I will need some time with WooCommerce today.
    For me, BuddyPress is the primary plugin, so with something like this(a major plugin like WooCommerce enters the picture), It needs some extra time. I wish I was aware earlier that the registration was handled using WooCommerce.

    The Multi Network plugin supports BuddyPress registration by default only.

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi Beuza,
    Are you using a 3rd party plugin or is it normal group invitations? I will try to help but not sure if I will be of much help.

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi Alex,
    Thank you.
    I appreciate the kind sentiments.

    We don’t have any donate link. I sincerely appreciate the feeling though.

    Thank you 🙂
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi Alex,
    Please upgrade to 1.1.2(I have renamed the plugin to WordPress Username availability checker).

    It is compatible with the Login with ajax. Please do note that the plugin is compatible with WordPress multisite out of the box.

    The porblem arises when some plugin change structure and the element selectors don’t work.

    Please check and let me know if it works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi Alex,
    1. I tested with normal WordPress/WordPress multisite registration page(wp-login.php/wp-signup.php) and it worked. I haven’t tested with Theme My Login and I am guessing that they are most probably modifying the login/signup page structure.

    2. Yes, I can put some code to show how to make it compatible with Login with ajax. It’s easy and I will post it today.

    3. Multisite Auth:- I am not sure what type of compatibility will be needed. The plugin simply checkes for username available(Not currently in use by any other user) and that’s it. I am not sure what type of compatibility you will need here.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: Personalized type of user profile #11915

    Sure.
    I am looking forward to see it in action.