Untitled-27 Back to Project

Getting Started Untitled-27

Customisation Untitled-27

Troubleshooting Untitled-27

Security Untitled-27

Users & roles Untitled-27

Working with Client Portal Untitled-27

Integrations Untitled-27

How to change the 'Client Portal Archive' text

Woah there! This is an advanced workaround for Client Portal. Make sure you backup your WordPress website or edit via your FTP before changing any codey things.

If you have multiple projects tied to the same client, when they log in they will show a dashboard of all portals assigned to them.

If you would like to change the heading "Client Portal Archive" to something else, you can add the following snippet in functions.php in your theme:

function my_leco_cp_client_portal_archive() {
	return 'Your Projects With Us';
}
add_filter( 'leco_cp_client_portal_archive', 'my_leco_cp_client_portal_archive' );

Simply change "Your Projects With Us" to anything you want, and you are good to go!