Jump to content

Własne skrypty dla slidera.


compsoul.dev

Recommended Posts

Mam moduł ps_imageslider blokuje on renderowanie strony więc chciałem go zastąpić swoim http://blog.compsoul.pl/liseblog/wydajny-i-szybki-slider-na-strone-internetowa/57.html szablony już odpowiednio przerobiłem, ale w dalszym ciągu dodaje mi się ścieżka z tej funkcji:

    public function hookdisplayHeader($params)
    {
        $this->context->controller->registerStylesheet('modules-homeslider', 'modules/'.$this->name.'/css/homeslider.css', ['media' => 'all', 'priority' => 150]);
        $this->context->controller->registerJavascript('modules-responsiveslides', 'modules/'.$this->name.'/js/responsiveslides.min.js', ['position' => 'bottom', 'priority' => 150]);
        $this->context->controller->registerJavascript('modules-homeslider', 'modules/'.$this->name.'/js/homeslider.js', ['position' => 'bottom', 'priority' => 150]);
    }

Jak mogę ją nadpisać aby umieścić tam swoje pliki?

Dodatkowe moje pytanie brzmi jaki jest najlepszy sposób na dodawanie plików js do skórki?

Link to comment
Share on other sites

Witam,

Najlepszym sposobem dodania kodu javascript jest wrzucenie do własnego pliku:
katalog_prestashop > themes > nazwa szablonu > assets > js > i tu utworzyć plik "custom.js"

następnie w pliku :
katalog_prestashop > themes > nazwa szablonu > config > config.yml 

następnie dodać do pliku config.yml:
   js:
     all:
       - id: custom
         path: assets/js/custom.js
         priority: 320
         position: head

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