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

    (@jfarthing84)

    Try this:

    
    function modify_tml_actions( $url, $action ) {
        if ( 'login' == $action ) {
            return 'YOUR LOGIN URL HERE';
        } elseif ( 'register' == $action ) {
            return 'YOUR REGISTRATION URL HERE';
        }
        return $url
    }
    add_filter( 'tml_get_action_url', 'filter_tml_action_url', 10, 2 );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Set slug to external domain’ is closed to new replies.