Página 1 de 1

ajuda com pagina de informação

Enviado: 12 Abr 2013, 14:40
por juicestore
Estou com um grande problema em meu site, as informações não estão aparecendo, a pessoa clica em quem somos e diz que a pagina não foi encontrada, como resolvo isso, urgente , por favor.
http://www.juicestore.com.br/%3Cb%3ENot ... 36%3C/b%3E

está assim com todas, alguém sabe resolver ?

Re: AJUDA URGENTE

Enviado: 12 Abr 2013, 15:53
por valdeir2000
Primeiro recomendo lê esse aqui https://forum.opencartbrasil.com.br/ ... f=4&t=2204

O erro é porque a variável não está sendo declarada corretamente no controller do footer

Re: AJUDA URGENTE

Enviado: 12 Abr 2013, 16:15
por juicestore
Desculpa, não tinha lido, como faço pra resolver o problema ?
meu código está assim .

Código: Selecionar todos
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/pt_BR/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>


<!--Start of Zopim Live Chat Script-->
<script type="text/javascript">
window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$=z.s=
d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set.
_.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute('charset','utf-8');
$.src='//cdn.zopim.com/?12e1AbwNSB2BYkMkqoXZlUU8d78CARdF';z.t=+new Date;$.
type='text/javascript';e.parentNode.insertBefore($,e)})(document,'script');
</script>
<!--End of Zopim Live Chat Script-->

<div class="fb-like-box" data-href="http://www.facebook.com/juicestore" data-width="960" data-show-faces="true" data-stream="false" data-border-color="#FFC0CB" data-header="true"></div>





</div>
</div>
<div id="footer">
<div class="wrapper clearafter">
  <?php if ($informations) { ?>
  <div class="column">
    <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>
  <?php } ?>
  <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>
  <div class="column">
    <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>
  <div class="column">
    <h3><?php echo $text_account; ?></h3>
    <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 $wishlist; ?>"><?php echo $text_wishlist; ?></a></li>
      <li><a href="<?php echo $newsletter; ?>"><?php echo $text_newsletter; ?></a></li>
    </ul>
    </div>
    
    <div style="float: left; position: relative; margin: 15px 15px 15px 0;">
<a id="seloEbit" href="http://www.ebit.com.br/#Juice Store" target="_blank">Avaliação de Lojas e-bit</a> <script type="text/javascript" id="getSelo" src="https://558701205.r.anankecdn.com.br/ebitBR/static/getSelo.js?44924" > </script>
</div>

<div style="float: left; position: relative; margin: 15px 15px 15px 0;">
<div id="selo_siteforte">
<script type="text/javascript"> 
var _sfurl = "www.juicestore.com.br";
var _sfid = "5141f1c749b8a9b308000001";
var _sfhttptls = ('https:' == document.location.protocol ? 'https://' : 'http://');
(function() {
var _sfa = document.createElement('script'); _sfa.type = 'text/javascript';
_sfa.src = _sfhttptls + 'siteforte.com.br/selo.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(_sfa, s);
})();
</script>
</div>
</div>
    
    
  </div>
</div>
</div>
</div>



<p align="center">&nbsp;</p>
	<p align="center">Criado por  <a href="http://wwww.juicestore.com.br" title="Juice Store">Juice Store</a><br />
    Copyright © 2013 Juice Store. Todos os direitos reservados.
    </p>
</div>



</body></html>

Re: ajuda com pagina de informação

Enviado: 12 Abr 2013, 19:51
por valdeir2000
Altera
Código: Selecionar todos
<li><a href="<?php echo $information['../href']; ?>"><?php echo $information['title']; ?></a></li>
para
Código: Selecionar todos
<li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>

Re: ajuda com pagina de informação

Enviado: 12 Abr 2013, 21:34
por juicestore
Rapaz, valeu mesmo, muiiiiiito obrigado, deu certo, vlw .