Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #275570

    hello, when i am in my blog, and i do a mouseover the user user who did the blog entry, you will see
    in the statusbar of the browser the username……..thats fine, but so a hacker can see, the username ……

    is there a possibility to send the user not to the http://www.xyz/author/USERNAME but rather to maybe a about me page?

    regrads harry

    #275574

    normally it should be shown the public name? but it shows the username…:-( how can i change that?

    #275586

    Hey!

    Please add following code to Functions.php file in Appearance > Editor and change the link to your about me page

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery("span.fn a").attr("href", "http://kriesi.at");
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Yigit

    #276018

    thanks yigit,

    i am wondering, because i thougt, in user settings, when i choose, the public name , then it should not shown the public name, name, not the admin name…….

    i think in other themes works it so……

    regards harry……

    i try the code….

    #276068

    Hi!

    As far as I know this is the default behavior for WordPress. You can change it with a plugin however and this blog posts has a walkthrough of doing just that: http://www.wpbeginner.com/plugins/how-to-change-author-url-slug-and-base-in-wordpress/

    Best regards,
    Devin

    #276080

    o.k. thanks devin……

    then will the standard function not work…….

    i try now the plugin of the blog post you sent me! :-)

    thanks harry

    #276085

    perfect!!!!!!!!!! thanks a lot!!!!!!!!!!!!!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘username is shown in browser statusbar’ is closed to new replies.