• Resolved CotswoldPhoto

    (@cotswoldphoto)


    I was just about to post this when you updated to do half of my fix. So, to stop script from loading on login page also ….

    Add this function to top of php:

    function is_login_page() {
        return in_array($GLOBALS['pagenow'], array('wp-login.php', 'wp-register.php'));
    }

    and change the two style and script loading lines:

    if (is_login_page() !== FALSE ) add_action( 'init', 'fttb_scripts' );
    
    if (is_login_page() !== FALSE ) add_action( 'wp_enqueue_scripts', 'fttb_styles' );

    https://www.ads-software.com/plugins/float-to-top-button/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter CotswoldPhoto

    (@cotswoldphoto)

    Oops, sorry, those last 2 lines should be:

    `if ( !is_admin() && is_login_page() !== FALSE ) add_action( ‘init’, ‘fttb_scripts’ );

    if ( !is_admin() && is_login_page() !== FALSE ) add_action( ‘wp_enqueue_scripts’, ‘fttb_styles’ );’

    My bad.

    Thread Starter CotswoldPhoto

    (@cotswoldphoto)

    and then it doesn’t make them into code. Try #3:

    if ( !is_admin() && is_login_page() !== FALSE ) add_action( 'init', 'fttb_scripts' );
    
    if ( !is_admin() && is_login_page() !== FALSE ) add_action( 'wp_enqueue_scripts', 'fttb_styles' );
    Thread Starter CotswoldPhoto

    (@cotswoldphoto)

    MMMM. On second thoughts, just in case someone else makes a function with the same name, maybe call function fftb_is_login_page() ?

    Plugin Author cageehv

    (@cageehv)

    Hey CotswoldPhoto,

    Just released version v1.1.2 of the plugin.

    This fixes the login page issue.

    Thanks for your suggestion!

    Rolf

    Thread Starter CotswoldPhoto

    (@cotswoldphoto)

    You are welcome. Give some, get some == community.

    Plugin Author cageehv

    (@cageehv)

    Good point! ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Another fix for login page’ is closed to new replies.