Back to Project
Getting Started
- How to install Client Portal
- Can I use it without WordPress?
- Setting up your first portal
- Using content pages
- Questionnaires with Contact Form 7
- Importing and Exporting Portals
- Icon Cheatsheet
Customisation
- How do I edit 'Phase 1, 2, 3' text?
- Customise project status modules
- Remove the project status modules
- How to change the fonts in Client Portal?
- How do I make a portal public?
- How to change the 'Client Portal Archive' text
- How to change the "Client Portal Login" text on the login page
- Change Error Message on the Login Screen
- How do I add or move Phases
- How do I redirect clients to the homepage after logged out
- What is the Legacy theme?
Troubleshooting
- I’m not getting Client Portal updates.
- Client Portal isn’t working.
- I can't find my Client Portal Login page!
- I'm getting a 404 error message
- Nginx error message
- I can't log into a portal
Security
- Are my files safe in Client Portal?
- How do I hide Client Portal from search results?
- Private File Uploads
Users & roles
- Can I assign a client a different role?
- How can I assign multiple users to Client Portal?
- How do I add a new user to Client Portal?
Working with Client Portal
- Introducing Client Portal to your clients
- How clients can mark as complete
- Accepting file uploads with Contact Form 7
- Accepting file uploads with Gravity Forms
- Create a to-do list with Google Sheets
- Accepting file uploads in Client Portal
Integrations
How do I edit the ‘Phase 1, 2, 3’ etc. text?
We've already added a new option in Client Portal Settings and each portal called "Phase X Text" that you can change "Phase 1, 2, 3" to "Section 1, 2, 3" etc.
If you also want to remove the "numbers" from it, just add the following CSS to "Custom CSS" in Client Portal Settings:
.leco-cp-phase-text i {display: none;}
To hide it completely (hide the whole "Phase 1, 2, 3"), use the following CSS:
.phase-title .leco-cp-phase-text {display: none;}
To hide it only for some projects, as always, you can specify the project ID like:
.postid-212 .phase-title .leco-cp-phase-text {display: none;}
We recommand you remove the previous PHP snippets from your functions.php and use the above approaches.
Old Codey Way
Here's how to edit or remove the 'Phase' text in Client Portal:
In WordPress, navigate to Appearance -> Editor.
On the right hand side, click on Theme Functions (functions.php).
Remove the "Phase X" text altogether
To remove the 'Phase' text completely, paste in the following code snippet at the bottom of functions.php.
function my_leco_cp_remove_phase_x_text() { $text = ''; return $text; } add_filter( 'leco_cp_phase_x_text', 'my_leco_cp_remove_phase_x_text', 10, 2 );
Remove the number from "Phase X"
To remove the phase number, paste in the following code snippet at the bottom of functions.php.
function my_leco_cp_remove_x_text() { $text = 'Phase'; return $text; } add_filter( 'leco_cp_phase_x_text', 'my_leco_cp_remove_x_text', 10, 2 );
If you also want the Phase text to say something different, simply switch out:
$text = 'Phase';
And change 'Phase' to whatever you want it to say.
Replace the "Phase" with "Section" (or any other word) in "Phase X"
To replace the word 'Phase', paste in the following code snippet at the bottom of functions.php.
function my_leco_cp_change_phase_x_text( $text, $number ) { $text = 'Section ' . $number; return $text; } add_filter( 'leco_cp_phase_x_text', 'my_leco_cp_change_phase_x_text', 10, 2 );
In the above snippet, change the following text to say whatever you want:
$text = 'Section ';