• Hello,

    Thanks for continuing to update this plugin. I have some small requests:

    1. I prefer the username not to just be the first name, but instead something like first_last. Can you add a filter for the username so developers can modify it how we see fit without hacking the plugin?
    Example:

    $user_login = apply_filters( 'pre_user_login', $name);
    $user_id = wp_create_user( $user_login , $random_password, $email );
    
    wp_update_user(
    array(
    	'ID'=>$user_id,
    	'user_url'=> $link,
    	'user_nicename'=> $user_login,
    	'first_name' => $first_name,
    	'display_name'=>$name,
    	)
    );

    2. Can you make the word “FACEBOOK” in this line “Facebook” so we may more easily format its case in css? Also the whole line could be filterable.
    echo '<a class="bp_social_connect_facebook" href="javascript:void(0)">'.__('FACEBOOK','bp-social-connect').'</a><br />';

    3. There is something wrong with the redirection after login. It’s not working for me especially on wp-login.php

    Thanks for all you do.

    https://www.ads-software.com/plugins/bp-social-connect/

Viewing 1 replies (of 1 total)
  • Plugin Author wpthemes

    (@wpthemes)

    1. Done. We’re currently generating user name fomr Email, so I have added following filter : $user_login = apply_filters( ‘bp_social_connect_user_login_name’, $email ,$_POST);

    2. Done.

    3. Yes, this will be fixed in the coming update.

Viewing 1 replies (of 1 total)
  • The topic ‘Requests’ is closed to new replies.