• Resolved jpw94

    (@jpw94)


    I have a page with the TML shortcode on it.
    I wish to be able to add a link to it (similar to lost your password) in the event of a failed login.

    Is that possible? If so, where would I place that link?

Viewing 1 replies (of 1 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    
    function tml_action_links_filter( $links ) {
        $links['NAME_FOR_YOUR_ACTION'] = array(
            'title' => 'YOUR ACTION TITLE',
            'url'   => 'YOUR ACTION URL'
        );
        return $links;
    }
    add_filter( 'tml_action_links', 'tml_action_links_filter' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘customize the login page’ is closed to new replies.