Skip to content

Instantly share code, notes, and snippets.

Created July 6, 2017 18:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3b3018156d2bb7fe1b86d38570803a1f to your computer and use it in GitHub Desktop.
Save anonymous/3b3018156d2bb7fe1b86d38570803a1f to your computer and use it in GitHub Desktop.
Remove WP Ultimo Login Styling
<?php
/*
Plugin Name: WP Ultimo Remove Styling
Plugin URI: https://wpultimo.com
Description: Removes WPUltimo login styling to prevent conflicts from other admin themes. Enable/disable by activating/deactivating the plugin.
Version: 0.6
Author: goldenticket
Author URI: https://docs.wpultimo.com/community/users/goldenticket/
License: GPL2
*/
add_action( 'wp_ultimo_remove_login_styling', 'remove_wp_ultimo_login' );
function remove_wp_ultimo_login(){
remove_action( 'login_enqueue_scripts', 'login_scripts' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment