Skip to content

Instantly share code, notes, and snippets.

@manuelhudec
Created June 1, 2021 18:53
Show Gist options
  • Save manuelhudec/e10dcbaa58f35a74c9b30263934530fa to your computer and use it in GitHub Desktop.
Save manuelhudec/e10dcbaa58f35a74c9b30263934530fa to your computer and use it in GitHub Desktop.
Client-Portal.io - Logout Redirect
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