Docs & Support

Learn about all the Formidable features and get support from our amazing customer success team.

frm_global_login_msg

Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.

This hook can be used to change the login message in the global settings.

Usage

add_filter( 'frm_global_login_msg', 'change_message' );

Formidable Forms makes advanced site building simple. Launch forms, directories, dashboards, and custom WordPress apps faster than ever before.

Parameters

  • $message (string)

Examples

Change the login message

This example will change the login message.

add_filter( 'frm_global_login_msg', 'change_message' );
function change_message( $message ) {
    $message = 'place new message here';
    return $message;
}

Custom global login message

Use this code to customize the Login message in the Formidable > Global Settings → Message Defaults page by adding a link to the login page. To apply the login page link, surround the word or phrase with asterisks. For example: You do not have permission to view this form. *Please sign in to continue*.

add_filter( 'frm_global_login_msg', 'custom_global_login_message' );
function custom_global_login_message( $message ) {
    $frm_settings = FrmAppHelper::get_settings();
    $frm_login_msg = $frm_settings->login_msg;
		
    if ( substr_count( $frm_login_msg, '*' ) == 2 ) {
        $frm_login_msg_array = explode( "*", $frm_login_msg );
			
        $current_url = home_url( add_query_arg( [], $GLOBALS['wp']->request ) ); // get_permalink() doesn't include query vars
			
        $frm_login_msg = $frm_login_msg_array[0];
        $frm_login_msg .= '<a href="' . esc_url( wp_login_url( $current_url ) ) . '" alt="Login">';
        $frm_login_msg .= $frm_login_msg_array[1];
        $frm_login_msg .= '</a>';
        $frm_login_msg .= $frm_login_msg_array[2];
			
	    }
		
    return $frm_login_msg;
}
Was this article helpful? *

This article may contain affiliate links. Once in a while, we earn commissions from those links. But we only recommend products we like, with or without commissions.

In this article

    We have a small, but amazing team of dedicated people who are committed to helping you achieve your goals and project requirements.


    Copyright © 2025 Strategy11, LLC. Formidable Forms® is a registered trademark Strategy11, LLC.

    Complete your purchase
    Special offer unlocked.
    Get 55% OFF!
    Complete Purchase
    Join 400,000+ using Formidable Forms to create form-focused solutions fast. Get Formidable Forms