Title: juani's Replies | WordPress.org

---

# juani

  [  ](https://wordpress.org/support/users/juani/)

 *   [Profile](https://wordpress.org/support/users/juani/)
 *   [Topics Started](https://wordpress.org/support/users/juani/topics/)
 *   [Replies Created](https://wordpress.org/support/users/juani/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/juani/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/juani/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/juani/engagements/)
 *   [Favorites](https://wordpress.org/support/users/juani/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is it possible to remove the /author/ in the user profile URL/permalink?](https://wordpress.org/support/topic/is-it-possible-to-remove-the-author-in-the-user-profile-urlpermalink/)
 *  [juani](https://wordpress.org/support/users/juani/)
 * (@juani)
 * [16 years ago](https://wordpress.org/support/topic/is-it-possible-to-remove-the-author-in-the-user-profile-urlpermalink/#post-1269690)
 * try this:
 *     ```
       RedirectMatch 301 ^/author/(.+)$ http://www.yourblog.com/$1
       ```
   
 * I use it in my site [http:futborama.com](http://futborama.com)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: WP-FacebookConnect] change user name to something else that fbN](https://wordpress.org/support/topic/plugin-wp-facebookconnect-change-user-name-to-something-else-that-fbn/)
 *  [juani](https://wordpress.org/support/users/juani/)
 * (@juani)
 * [16 years ago](https://wordpress.org/support/topic/plugin-wp-facebookconnect-change-user-name-to-something-else-that-fbn/#post-1466542)
 * de nada!
    Espero que te sirva, cualquier cosa preguntame
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: WP-FacebookConnect] change user name to something else that fbN](https://wordpress.org/support/topic/plugin-wp-facebookconnect-change-user-name-to-something-else-that-fbn/)
 *  [juani](https://wordpress.org/support/users/juani/)
 * (@juani)
 * [16 years ago](https://wordpress.org/support/topic/plugin-wp-facebookconnect-change-user-name-to-something-else-that-fbn/#post-1466534)
 * yes, open te common.php file in line ~194 and change this:
    `$fbusername = 'fb'.
   $fbuid;`
 * for this:
 *     ```
       $counter = 1;
         $fbusername = str_replace( ' ', '', $userinfo['name'] );
         if (username_exists($fbusername)) {
       	do
               {
                   $username = $fbusername;
                   $counter++;
                   $username = $username . $counter;
               } while ( username_exists( $username ) );
           }
           else
           {
               $username = $fbusername;
           }
           $username = strtolower( sanitize_user($username) );
   
         $userdata = fbc_userinfo_to_wp_user($userinfo);
         $userdata['user_pass'] = wp_generate_password();
         $userdata['user_login'] = $username; //login with new nice username
         $userdata['user_nicename']= $username; //show name with new nice username
       ```
   
 * you can see in action in my video soccer site [http//futborama.com](http://futborama.com)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Searching with multiple taxonomies](https://wordpress.org/support/topic/searching-with-multiple-taxonomies/)
 *  [juani](https://wordpress.org/support/users/juani/)
 * (@juani)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/searching-with-multiple-taxonomies/#post-1313387)
 * look that plugin [http://scribu.net/wordpress/query-multiple-taxonomies](http://scribu.net/wordpress/query-multiple-taxonomies)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [wp insert post with custom taxonomies?](https://wordpress.org/support/topic/wp-insert-post-with-custom-taxonomies/)
 *  [juani](https://wordpress.org/support/users/juani/)
 * (@juani)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/wp-insert-post-with-custom-taxonomies/#post-1338510)
 * You might look this function **wp_set_post_terms**( $post_ID, $tags, $taxonomy,
   $append ) in the codex [http://codex.wordpress.org/Function_Reference/wp_set_post_terms](http://codex.wordpress.org/Function_Reference/wp_set_post_terms).
   
   I use it in a form of my classifield site 😉

Viewing 5 replies - 1 through 5 (of 5 total)