Jump to content

ajout de code entre les balises <head> </head>


Recommended Posts

[RESOLU]

Bonsoir à tous,

 

je souhaiterais rajouter un script js (inspectlet) entre les balises <head></head> de ma boutique en ligne.

Est ce que l'un d'entre vous saurait m'expliquer comment faire ça proprement?

 

Merci d'avance,

 

Vinasse

 

 

Ouch ça doit être la fatigue du week-end... La réponse n'était pas loin:

themes>montheme>header.tpl

Edited by vinasse (see edit history)
Link to comment
Share on other sites

Bonjour !

 

s'il s'agit d'un script javascript a charger dans le Header, il existe la méthode addJS()

 

Tools::addJS(css_uri, $css_media_type = 'all')

 

 

il vous est également possible d'utiliser le hook du header

 


public function hookHeader($params)
{
Tools::addCSS($this->_path.'productscategory.css', 'all');
Tools::addJS(array($this->_path.'productscategory.js', _PS_JS_DIR_.'jquery/jquery.serialScroll-1.2.2-min.js'));
}

Edited by hoolay (see edit history)
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...