MarkT Posted October 13, 2016 Share Posted October 13, 2016 Hi I'm using the cloud slider template for one of my pricing pages - I need to change the text in it, could anyone tell me where it is? It uses variables like this; {$LANG.cloudSlider.feature02DescriptionTwo} {$LANG.cloudSlider.feature03Description} </p> <p> {$LANG.cloudSlider.feature03DescriptionTwo} Any help would be appreciated. Thanks 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 14, 2016 Share Posted October 14, 2016 to change the text you'll need to use a method called Language Overrides - basically, you create alternative text strings for these variables in the languages you want to change - you never alter the original language files supplied with WHMCS because they'll be overwritten during an upgrade. http://docs.whmcs.com/Language_Overrides for example, if you take a look in /lang/english.php, you'll see the following entry... $_LANG['cloudSlider']['feature01DescriptionTwo'] = "By trusting us with your business needs, we promise you a 99.9% uptime on any services we provide, outside of any standard maintenance we may provide."; to change this, you would create an "overrides" folder within the "lang" directory, create a file called english.php and paste your alternative strings... <?php $_LANG['cloudSlider']['feature01DescriptionTwo'] = "some other text..."; you can change multiple language strings via this method all in the one file for each language - the documentation will give you a longer walkthough of how to do it. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.