XF 2.2 Change the "You must login or register" link

DimitriT

New member
We have implemented SSO for our forum with our user management system. Everything is working great but I'd like to point the
1611614408020.webp
https://[domain]/forum/index.php?login/

to a custom URL that will redirect the user to the SSO login window.

Thanks!
 
Edit the forum_view template and edit this code:
HTML:
<xf:button href="{{ link('login') }}" class="button--link button--wrap" overlay="true">
    {{ phrase('log_in_or_register_to_post') }}
</xf:button>
 
Top Bottom