eagleman Posted April 27, 2020 Share Posted April 27, 2020 Hi I added the files /httpdocs/themes/mytheme/assets/js/footable.js /httpdocs/themes/mytheme/assets/js/footable.min.js And I edited the file /httpdocs/classes/controller/FrontController.php and I added public function setMedia() { $this->registerStylesheet('theme-main', '/assets/css/theme.css', ['media' => 'all', 'priority' => 50]); $this->registerStylesheet('theme-custom', '/assets/css/custom.css', ['media' => 'all', 'priority' => 1000]); $this->registerStylesheet('theme-custom', '/assets/css/footable.standalone.css', ['media' => 'all', 'priority' => 1000]); $this->registerStylesheet('theme-custom', '/assets/css/footable.standalone.min.css', ['media' => 'all', 'priority' => 1000]); if ($this->context->language->is_rtl) { $this->registerStylesheet('theme-rtl', '/assets/css/rtl.css', ['media' => 'all', 'priority' => 900]); } $this->registerJavascript('corejs', '/themes/core.js', ['position' => 'bottom', 'priority' => 0]); $this->registerJavascript('theme-main', '/assets/js/theme.js', ['position' => 'bottom', 'priority' => 50]); $this->registerJavascript('theme-custom', '/assets/js/footable.js', ['position' => 'bottom', 'priority' => 50]); $this->registerJavascript('theme-custom', '/assets/js/footable.min.js', ['position' => 'bottom', 'priority' => 50]); $this->registerJavascript('theme-custom', '/assets/js/custom.js', ['position' => 'bottom', 'priority' => 1000]); but the two files does not load Regards, Link to comment Share on other sites More sharing options...
Verlonimo Posted April 27, 2020 Share Posted April 27, 2020 (edited) Hi, Not sure which PS version you are using but you might want to read this: https://devdocs.prestashop.com/1.7/themes/getting-started/asset-management/ Especially "Registering in themes" part. Or you could just add links to your assets directly in your theme header.tpl file. No need controller override here.... Thanks Edited April 27, 2020 by Verlonimo (see edit history) Link to comment Share on other sites More sharing options...
eagleman Posted April 27, 2020 Author Share Posted April 27, 2020 Hi I'm using 1.7.6.3 i will try to add file in header Regards 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