Jump to content

Moduł nie wyświetla się w wersji mobilnej


Speszi

Recommended Posts

Witam.

Zmodyfikowałem sobie moduł "Własny blok informacyjny CMS" w ten sposób że przeniosłem go do footer (dodałem nowego hooka w module)

Jednak po tej modyfikacji jest mega problem bo nie wiem czemu nie wyświetla mi się ten blok w wersjach mobilnych.

Próbowałem kombinować w CSS @media w global.css jednak bez żadnych efektów.

Ma ktoś może pomysł dla czego mogło się tak zadziać.

Jeżeli chodzi o samą modyfikacje modułu blockcmsinfo.php to zmodyfikowałem go wstawiając

public function hookFooter($params)
	{
		$this->context->controller->addCSS($this->_path.'style.css', 'all');
		if (!$this->isCached('blockcmsinfo.tpl', $this->getCacheId()))
		{
			$infos = $this->getInfos($this->context->language->id, $this->context->shop->id);
			$this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos)));
		}

		return $this->display(__FILE__, 'blockcmsinfo.tpl', $this->getCacheId());
	}

Jednym słowem sklonowałem linijke z hooka home i wkliłem powyżej zmieniając jedynie nazwe hooka, która wygląda następująco

public function hookHome($params)
	{
		$this->context->controller->addCSS($this->_path.'style.css', 'all');
		if (!$this->isCached('blockcmsinfo.tpl', $this->getCacheId()))
		{
			$infos = $this->getInfos($this->context->language->id, $this->context->shop->id);
			$this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos)));
		}

		return $this->display(__FILE__, 'blockcmsinfo.tpl', $this->getCacheId());
	}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...