juani
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
try this:
RedirectMatch 301 ^/author/(.+)$ http://www.yourblog.com/$1I use it in my site http:futborama.com
Forum: Plugins
In reply to: [Plugin: WP-FacebookConnect] change user name to something else that fbNde nada!
Espero que te sirva, cualquier cosa preguntameForum: Plugins
In reply to: [Plugin: WP-FacebookConnect] change user name to something else that fbNyes, 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 usernameyou can see in action in my video soccer site http//futborama.com
Forum: Fixing WordPress
In reply to: Searching with multiple taxonomieslook that plugin http://scribu.net/wordpress/query-multiple-taxonomies
Forum: Plugins
In reply to: wp insert post with custom taxonomies?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.
I use it in a form of my classifield site 😉
Viewing 5 replies - 1 through 5 (of 5 total)