Comments 1Gennaro started the conversationMarch 11, 2025 at 9:12amhow can I add a SSO login button in the agent-dashboard ?I need to add a link or a shortcode in the login page as you can see in this documentation:https://developers.miniorange.com/docs/oauth/wordpress/client/login-optionsis there some hook that I can use to do this in a clear way? thanks 2,619WebWizards repliedMarch 13, 2025 at 3:51pmHello Gennaro, Perhaps you can use the hook "salesking_after_login". You may be able to add a shortcode there by adding this PHP snippet to your site: add_action('salesking_after_login', function(){ echo do_shortcode('[testcode]'); }); This will display a custom element in this area: https://prnt.sc/27Zy7b1jgHKW Kind regards, Stefan Sign in to reply ...
how can I add a SSO login button in the agent-dashboard ?
I need to add a link or a shortcode in the login page as you can see in this documentation:
https://developers.miniorange.com/docs/oauth/wordpress/client/login-options
is there some hook that I can use to do this in a clear way?
thanks
Hello Gennaro,
Perhaps you can use the hook "salesking_after_login".
You may be able to add a shortcode there by adding this PHP snippet to your site:
add_action('salesking_after_login', function(){ echo do_shortcode('[testcode]'); });This will display a custom element in this area: https://prnt.sc/27Zy7b1jgHKW
Kind regards,
Stefan