Jump to content

highcoding

Members
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • Location
    México DF
  • Activity
    Web development agency

Recent Profile Visitors

3,583,165 profile views

highcoding's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. I had the same error, and the solution I fould was to edit the product.tpl file in my themes/prestashop folder (I'm using the default template). On line 68 I changed var ipa_default = {if isset($ipa_default)}{$ipa_default}{/if}; to var ipa_default = {if isset($ipa_default)}{$ipa_default}{else}0{/if}; The problem was caused by the JS error, as var ipa_default stayed empty (in the source code it looked var ipa_default= and now it looks var ipa_default=0)
  2. Hola, primero tienes que ir a modules/blocktopmenu/menutoplink.class.php línea 31 , y cambiar $sql = 'SELECT l.id_linksmenutop, l.new_window, ll.link, ll.label a $sql = 'SELECT l.id_linksmenutop, l.new_window, l.link, ll.label (quita una l antes de ".link") Luego, si intentas ver tu sitio web, aparecerá otro error que se puede solucionar alterando la tabla ps_linksmenutop desde tu phpmyadmin: ALTER TABLE `ps_linksmenutop` ADD `id_shop` INT( 4 ) NOT NULL DEFAULT '1' Suerte!
  3. Hi, first you need to go to modules/blocktopmenu/menutoplink.class.php line 31 and change $sql = 'SELECT l.id_linksmenutop, l.new_window, ll.link, ll.label to $sql = 'SELECT l.id_linksmenutop, l.new_window, l.link, ll.label (remove 1 l before ".link") Then when you try to see your site you will get another error which you can sort out by altering the ps_linksmenutop table: ALTER TABLE `ps_linksmenutop` ADD `id_shop` INT( 4 ) NOT NULL DEFAULT '1' you need to run the command in phpmyadmin. Good luck!
×
×
  • Create New...