Olá...
Para colocar no rodapé entrei no arquivo footer em- public_html/catalog/view/theme/
seu tema/template/common....
Substitui o arquivo atual por esse...
</div>
<?php
$displayCustomFooter = $this->config->get('customFooter_status');
if($displayCustomFooter == 1) {
echo $customFooter;
}
?>
<div id="footer">
<div class="grid_3">
<h3><?php echo $text_information; ?></h3>
<ul>
<?php foreach ($informations as $information) { ?>
<li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
<?php } ?>
</ul>
</div>
<div class="grid_3">
<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>
<div class="grid_3">
<h3><?php echo $text_extra; ?></h3>
<ul>
<li><a href="<?php echo $manufacturer; ?>"><?php echo $text_manufacturer; ?></a></li>
<li><a href="<?php echo $voucher; ?>"><?php echo $text_voucher; ?></a></li>
<li><a href="<?php echo $affiliate; ?>"><?php echo $text_affiliate; ?></a></li>
<li><a href="<?php echo $special; ?>"><?php echo $text_special; ?></a></li>
</ul>
</div>
<?php
$this->language->load('account/login');
$text_forgotten = $this->language->get('text_forgotten');
$entry_email = $this->language->get('entry_email');
$entry_password = $this->language->get('entry_password');
$button_login = $this->language->get('button_login');
$actionf = $this->url->link('account/login', '', 'SSL');
$registerf = $this->url->link('account/register', '', 'SSL');
$registerb = $this->language->get('text_register');
$forgotten = $this->url->link('account/forgotten', '', 'SSL');
?>
<div class="column">
<h3><?php echo $text_account; ?></h3>
<?php if ($this->customer->isLogged()) { ?>
<ul>
<li><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a></li>
<li><a href="<?php echo $order; ?>"><?php echo $text_order; ?></a></li>
<li><a href="<?php echo $newsletter; ?>"><?php echo $text_newsletter; ?></a></li>
<li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
<li><a href="<?php echo $voucher; ?>"><?php echo $text_voucher; ?></a></li>
</ul>
<?php } else { ?>
<div class="finfo">
<form action="<?php echo $actionf; ?>" method="post" enctype="multipart/form-data">
<b><?php echo $entry_email; ?></b><br />
<input style="width: 205px;" type="text" name="email" value="" />
<br />
<b><?php echo $entry_password; ?></b><br />
<input style="width: 205px;" type="password" name="password" value="" />
<br />
<a href="<?php echo $forgotten; ?>"><?php echo $text_forgotten; ?></a><br />
<input type="submit" value="<?php echo $button_login; ?>" class="button" />
</form>
</div>
<?php } ?>
</div>
<?php
$footer_title = $this->config->get('seu tema_footer_title');
$footer_content = $this->config->get('seu tema_footer_content');
$footer_pm = $this->config->get('seu tema_footer_pm');
?>
<div class="column">
<?php if (isset($footer_title[$this->config->get('config_language_id')])) { ?>
<h3><?php echo $footer_title[$this->config->get('config_language_id')]; ?></h3>
<?php } else { ?>
<?php } ?>
</div>
<div id="powered">
<?php if (isset($footer_pm)) { ?>
<img src="image/<?php echo $footer_pm; ?>" /><br />
<?php } else { ?>
<?php } ?>
<?php echo $powered; ?>
</div>
</div>
<!--
OpenCart is open source software and you are free to remove the powered by OpenCart if you want, but its generally accepted practise to make a small donation.
Please donate via PayPal to
donate@opencart.com
//-->
<!--
OpenCart is open source software and you are free to remove the powered by OpenCart if you want, but its generally accepted practise to make a small donation.
Please donate via PayPal to
donate@opencart.com
//-->
</div>
</body></html>