• I already have a plugin handling my author data that puts in a
    Twitter, Google, Facebook in the User Profile.

    Yoast needs to offer access to easily say yes or no to this option.
    It’s sort of just undocumented and obtrusive to just add that stuff in there when never discussing it or offering the option one way or the other.

    You have to go find the class-admin.php in the wordpress-seo/admin folder and comment it out. That’s a drag.

    Another issue is you added “Twitter username (without @)” text to it which is not how my other plugin works and so it adds to confusion.

    Yoast, please fix this and hire someone to say “hmm, maybe we should stick to what we say we’re going to do and not try to be everything (AKA KISS)” every so often.

    Otherwise, pleased with documented and optional SEO functions.

    https://www.ads-software.com/plugins/wordpress-seo/

Viewing 1 replies (of 1 total)
  • Hear hear! Please fix this asap, thanks.

    Meanwhile, you can remove them with this:

    function hide_profile_fields( $contactmethods ) {
        unset($contactmethods['googleplus']);
        unset($contactmethods['twitter']);
        unset($contactmethods['facebook']);
        return $contactmethods;
    }
    add_filter('user_contactmethods','hide_profile_fields',10,1);
Viewing 1 replies (of 1 total)
  • The topic ‘Needs on/off tickbox for Twitter, Google, Facebook User Profile’ is closed to new replies.