How to disable the Customer Service section in the newest OC version?
Thanks
This is an easy fix. Just open up catalog/view/theme/default/template/common/footer.tpl and remove this entire block of code:
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
<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>
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 } ?>
OpenCart Extensions, Technical Support & Custom Development | Have I helped you?
Thanks! It worked.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:
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
<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>
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 } ?>
Who is online
Users browsing this forum: No registered users and 18 guests