• Resolved Hoopy

    (@lcwilson18)


    I currently use a third-party plugin so I can do some limited dashboard branding without adding code but the UI and updates are few and far between.

    I can supply you a version of it so you can see what it has if you would like?

    Below is what I would like to see in ASE whether it is in a paid version or free.

    —————————————————————-

    • Replace wp-admin Logo

    Upload an image or from a URL + Header Link URI + changing the default WordPress “Powered by WordPress”

    The use case would be:
    – So the end user can see their own branding
    – This cleans up the look and feel of the wp-admin & wp-login.php

    I currently use the following code to do this

    // Changing Login Logo
    function my_login_logo() { ?>
        <style type="text/css">
            #login h1 a, .login h1 a {
                background-image: url(image.png);
                height: 95px; //change to image size
                width: 170px; //change to image size
                background-size: 100%;
                background-repeat: no-repeat;
                padding-bottom: 100px; //adjust as needed
            }
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'my_login_logo' );
    
    // Changing Login URL
    function my_login_logo_url() {
        return home_url();
    }
    add_filter( 'login_headerurl', 'my_login_logo_url' );
    
    function my_login_logo_url_title() {
        return get_bloginfo( 'name' );
    }
    add_filter( 'login_headertext', 'my_login_logo_url_title' );
    
    add_filter( 'login_title',function($login_title){
    	return str_replace(array( ' &lsaquo;', ' — WordPress',__('WordPress'),), array( ' &lsaquo;', ''),$login_title );
    });
    
    function custom_login_logo() {
      echo '<style>
        .bs-cs-login-title {
            display:none;
        }
      </style>';
    }
    add_action('login_head', 'custom_login_logo');

    —————————————————————-

    Custom Dashboard Branding Image

    • Upload Image or URL + Name

    This will display as a linked image in the very top left-hand navigation and in the wp footer and replace other plugins that add information to the wp footer

    The use case would be:
    – You develop a website for a client and wish to brand the dashboard
    – Customize the back end of your WordPress site without coding

    —————————————————————-

    • Hide the WP version on the wp footer

    So Version x.x.x is no longer shown on the dashboard footer

    The use case would be:
    – Clean footer
    – Only show your own branding as per “Custom Dashboard Branding Image”

    —————————————————————-

    The overall use case is to remove existing plugins and ease to non-developers to brand their dashboard to make it more appealing.
    I know this is not a branding tool, however, I’d like to see a few more features integrated if possible.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Bowo

    (@qriouslad)

    @lcwilson18 thank you for the detailed suggestion. Some sort of branding feature is planned for a future release, most probably in a paid version.

    One thing I’d like to clarify is, do you want to brand the site so it uses your client’s branding, or, do you (also) want to brand it so it show’s your company/agency’s branding? If both, which branding would go on which part of the site?

    Thread Starter Hoopy

    (@lcwilson18)

    The option would be for both.

    The branding would show on

    • On wp-admin & wp-login.php (Deafult WP Login page)
    • On the admin wp footer
    • At the very top of the left-hand admin dashboard navigation
    Plugin Author Bowo

    (@qriouslad)

    @lcwilson18 noted for now.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WordPress Dashboard Branding’ is closed to new replies.