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

    (@sourceaddons)

    Hi,
    for edit username
    go to FTP>wp-content/plugins/helpers/faceookall_process.php

    search below code:-

    if(!empty($fbdata['name'])) {
            $username = $fbdata['name'];
          }
          else if (!empty($fbdata['first_name']) && !empty($fbdata['last_name'])) {
            $username = $fbdata['first_name'].$fbdata['last_name'];
          }
          else {
    		$user_emailname = explode('@', $fbdata['email']);
            $username = $user_emailname[0];
          }

    please set $username according your requirement.
    let us know if you still have any issue drop email on sourceaddons@ymail.com.
    Thanks

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