Page 1 of 1

[SOLVED] How to disable "Customer Service"?

Posted: Sun Jan 01, 2012 10:54 pm
by Blackbeard
How to disable the Customer Service section in the newest OC version?

Thanks

Re: How to disable "Customer Service"?

Posted: Mon Jan 02, 2012 6:44 am
by d7a7z7e7d
This is an easy fix. Just open up catalog/view/theme/default/template/common/footer.tpl and remove this entire block of code:

Code: Select all

<div class="column">
    <h3><?php echo $text_service; ?></h3>
    <ul>
      <li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
      <li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
      <li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li>
    </ul>
  </div>
Or, if you think you might want to add it back later, you can just hide it by changing it to this:

Code: Select all

<?php if (false) { ?>
<div class="column">
    <h3><?php echo $text_service; ?></h3>
    <ul>
      <li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
      <li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
      <li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li>
    </ul>
  </div>
<?php } ?>

Re: How to disable "Customer Service"?

Posted: Thu Jan 05, 2012 12:24 am
by Blackbeard
d7a7z7e7d wrote:This is an easy fix. Just open up catalog/view/theme/default/template/common/footer.tpl and remove this entire block of code:

Code: Select all

<div class="column">
    <h3><?php echo $text_service; ?></h3>
    <ul>
      <li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
      <li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
      <li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li>
    </ul>
  </div>
Or, if you think you might want to add it back later, you can just hide it by changing it to this:

Code: Select all

<?php if (false) { ?>
<div class="column">
    <h3><?php echo $text_service; ?></h3>
    <ul>
      <li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
      <li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
      <li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li>
    </ul>
  </div>
<?php } ?>
Thanks! It worked.