If you are customizing the CloudX theme and cannot find certain text (such as "Welcome to CloudX" on the login page) inside the TPL template files, this is expected behavior.
CloudX supports multiple languages, and most text labels, headings, and messages are loaded from language files rather than being hardcoded in the template files.
How to Modify Theme Text
Step 1: Access Your WHMCS Files
Open your FTP client or cPanel File Manager and navigate to your WHMCS installation directory.
Step 2: Locate the Language Override Directory
Browse to: whmcs_dir/lang/overrides
Step 3: Open the Language Override File
Open the language file corresponding to the language you are using. For example:
english.php
Step 4: Edit the Required Text
Search for the text you want to modify, such as "Welcome to CloudX", and replace it with your preferred wording.
Example: $_LANG['welcomeheading'] = "Welcome to My Company";
Step 5: Save Your Changes
Save the file and refresh your WHMCS page. The updated text will now be displayed throughout the CloudX theme.
Important Notes
- Always use the
lang/overridesdirectory for custom language changes. - Avoid editing core language files directly, as your changes may be overwritten during WHMCS updates.
- Language overrides allow you to customize branding, headings, button labels, and other text elements without modifying template files.
By using language override files, you can easily replace CloudX branding and customize the text displayed throughout your WHMCS installation.