Jump to content

Aggiungere file css


fabastudio

Recommended Posts

Salve, mi trovo difronte ad un problema, vorrei aggiungere un file css al mio template(sto utilizzando direttamente il tema di default) ho individuato la funzione che mi permette di aggiungerli(addCSS()).

In pratica dovrei aggiungere questo file solo per una categoria di clienti.

Nello specifico nel frontcontroller ho inserito la seguente istruzione:

		$sql = 'SELECT * FROM '._DB_PREFIX_.'customer_group WHERE id_customer ='.$this->context->customer->id;
		if ($row = Db::getInstance()->getRow($sql))
    	$grp=$row['id_group'];
		
		//FINE
			$this->addCSS(_THEME_CSS_DIR_.'global.css', 'all');			
		if($grp==4){
			$this->addCSS(_THEME_CSS_DIR_.'lollo.css', 'all');
		}
		else{
		}

Queste istruzioni generano errori, mi potreste aiutare?

 

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...