- Edited
Can someone pls tell me, how to change the main page text saying:
"Welcome to the Support Center
In order to streamline support requests and better serve you, we utilize a support ticket system. Every support request is assigned a unique ticket number which you can use to track the progress and responses online. For your reference we provide complete archives and history of all your support requests. A valid email address is required to submit a ticket."
It is not under index.php
Thanks.
Index.php has code below:
require('client.inc.php');
$section = 'home';
require(CLIENTINC_DIR.'header.inc.php');
?>
<div id="landing_page">
<?php
if($cfg && ($page = $cfg->getLandingPage()))
echo $page->getBody();
else
echo '<h1>Welcome to the Support Center</h1>';
?>
<div id="new_ticket">
<h3>Open A New Ticket</h3>
<br>
<div>Please provide as much detail as possible so we can best assist you. To update a previously submitted ticket, please login.</div>
<p>
<a href="open.php" class="green button">Open a New Ticket</a>
</p>
</div>
<div id="check_status">
<h3>Check Ticket Status</h3>
<br>
<div>We provide archives and history of all your current and past support requests complete with responses.</div>
<p>
<a href="view.php" class="blue button">Check Ticket Status</a>
</p>
</div>
</div>
<div class="clear"></div>
<?php
if($cfg && $cfg->isKnowledgebaseEnabled()){
//FIXME: provide ability to feature or select random FAQs ??
?>
<p>Be sure to browse our <a href="kb/index.php">Frequently Asked Questions (FAQs)</a>, before opening a ticket.</p>
</div>
<?php
} ?>
<?php require(CLIENTINC_DIR.'footer.inc.php'); ?>