Archive for the ‘User Profile’ Category

How to remove User profile fields

Tuesday, August 24th, 2010

Similar to this post, you can add a new function that is called by the "user_contactmethods" filter. Then, unset the values for the contact methods you no longer would like. For AIM, you would do the following in your functions.php file: function bwa_remove_some_contactmethods( $contactmethods ) { unset($contactmethods['aim']); return $contactmethods; } add_filter('user_contactmethods','bwa_remove_some_contactmethods',10,1); You can modify the other items ...

My WordPress post page visual editor is gone!

Tuesday, July 13th, 2010

I have heard this complaint form a couple different people where all of a sudden their visual editor is gone and they only have the plain-text (HTML) version of editor.  It seems like this mostly happens after an upgrade, but in older versions of WordPress it seemed to happen almost ...