• Adam Blunt

    (@adamxp12)


    Used to be a great little plugin
    Now its a joke
    the settings panel is slow
    seems like they are asking for money with extensions

    And if you look in the source of your website after you install the plugin you will see that it has changed the meta tag to advertise it’s self instead of the default tag which shows wordpress
    <meta name="generator" content="Custom Login v3.2" />
    that should be
    <meta name="generator" content="WordPress 4.1" />

Viewing 2 replies - 1 through 2 (of 2 total)
  • jeffreyalles

    (@jeffreyalles)

    Plugin Author Austin

    (@austyfrosty)

    Custom Login does not remove the default WordPress generator tag, but adds in addition to.

    If you’d like to remove the tag add this function:

    add_action( 'init', 'frosty_remove_cl_meta_tag' );
    function frosty_remove_cl_meta_tag() {
    	remove_action( 'wp_head', array( CUSTOMLOGIN(), 'cl_version_in_header' ) );
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Used to be nice and simple’ is closed to new replies.