fabastudio Posted December 18, 2013 Share Posted December 18, 2013 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now