Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1404243
    mynemesis
    Participant

    hi support

    could you help and point me to where i can change the http://www.wordpress.org link and adjust the font size/color etc?

    please see attached thanks support

    #1404247
    Nico
    Moderator

    Hi There,

    Thanks for writing in.

    Would you mind sharing us your URL and admin credentials so we could check your setup closer. Please share us the screenshot again so we could surely know what you want to change.

    Don’t for get to set it as private reply

    Thanks.

    #1404253
    mynemesis
    Participant

    please see attached file as previously it was too big to upload

    #1404264
    mynemesis
    Participant
    This reply has been marked as private.
    #1404418
    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! To resolve your issue, customized the WP login form, since you already have your child theme active and ready, please insert this following code in your child theme’s functions.php file.

    // =============================================================================
    // Customized the WP login form
    // =============================================================================
    
    //
    // WP Login logo link
    //
    add_filter('login_headerurl','custom_x_login_custom_link');
    function custom_x_login_custom_link() {
        return esc_url( home_url() );
    }
    
    //
    // WP Login logo title
    //
    add_filter('login_headertitle', 'custom_x_login_title_on_logo');
    function custom_x_login_title_on_logo() {
        return get_bloginfo('name');
    }
    
    //
    // WP Login footer
    //
    function custom_x_login_footer() { ?>
        <p style="text-align: center; margin-top: 1em;">
            If you have any questions, visit our <a style="text-decoration: none;" href="<?php esc_url( home_url() ); ?>/blog">blog</a>
        </p>
    <?php }
    add_action('login_footer','custom_x_login_footer');
    
    // 
    // Change the colors
    // 
    
    function custom_x_login_logo() { ?>
        <style type="text/css">
            body.login { color: #fff; }
            .login a,
            .login #backtoblog a, 
            .login #nav a {
                color: #fff;
            }
    
            .login a:hover,
            .login #backtoblog a:hover, 
            .login #nav a:hover {
                color: #ff0000;
            }
        </style>
    <?php }
    add_action('login_head', 'custom_x_login_logo');
    // =============================================================================

    Feel free to change the colors that will match with your background image if needed.

    Please let us know if this works out for you.

  • <script> jQuery(function($){ $("#no-reply-1404243 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>