Jump to content

fastwebdev

Members
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • First Name
    Dumitru
  • Last Name
    Alin

fastwebdev's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Eu as vrea adaug localitat, comune, sate pentru Romania, exemplu -> Iasi -> Harlau sau Botosani->Flamanzi, cum as putea face asta, sa fac un tabel in plus?
  2. Hello , Is this working for prestashop 1.6, because I have tried, and nothing shows up public function initContent() { $this->process(); if (!isset($this->context->cart)) { $this->context->cart = new Cart(); } if (!$this->useMobileTheme()) { // These hooks aren't used for the mobile theme. // Needed hooks are called in the tpl files. $this->context->smarty->assign(array( 'HOOK_HEADER' => Hook::exec('displayHeader'), 'HOOK_TOP' => Hook::exec('displayTop'), 'HOOP_MENU' => Hook::exec('displayMenu'), 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''), 'HOOK_RIGHT_COLUMN' => ($this->display_column_right ? Hook::exec('displayRightColumn', array('cart' => $this->context->cart)) : ''), )); } else { $this->context->smarty->assign('HOOK_MOBILE_HEADER', Hook::exec('displayMobileHeader')); } } this is my initContent() method, but is not working, can you give me a hint?
  3. Great tutorial, is working, but depends your div header to mine is that in global.js $(window).scroll(function(){ if ($(this).scrollTop() > 150) { $('#header').addClass('fixed'); } else { $('#header').removeClass('fixed'); } }); this chunk in global.css .fixed { position:fixed!important; z-index:9999; width:100%; margin:0px; top:0px; }
  4. I have seen there are two superfish-modified.css menu in blocktopmenu on themes->default--botstrap->css->modules, and another one in modules->blocktopmenu->css, I don't understand which one of those is the official one?
×
×
  • Create New...