Created
June 1, 2021 18:53
-
-
Save manuelhudec/e10dcbaa58f35a74c9b30263934530fa to your computer and use it in GitHub Desktop.
Client-Portal.io - Logout Redirect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_leco_cp_logout_url() { | |
// return the preferred URL. | |
return home_url(); | |
} | |
add_filter( 'leco_cp_logout_url', 'my_leco_cp_logout_url' ); | |
function my_leco_cp_client_portal_archive() { | |
return 'Ihre Projekte'; | |
} | |
add_filter( 'leco_cp_client_portal_archive', 'my_leco_cp_client_portal_archive' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment