Published WebsiteBaker Patch 1152022-05-31 : read more about…
Published WebsiteBaker 2.13.1 r1032022-04-16 : read more about…
PHP-8.1 released. 2021-11-25PHP-7.3 End Of Life. 2021-12-062021-12-02 : read more about…
Sure, no problem.
register_frontend_modfiles('jquery');
<!-- jQuery --><script src="<?php echo TEMPLATE_DIR; ?>/js/jquery.min.js"></script>
deactivate this line (if in use in your template)Code: [Select]register_frontend_modfiles('jquery');if you use SP6, go to AdminTools -> Frontend Output Filter and deactivate the Jquery, if its activatedat last step, add your favorite jquery file into your template folder and add the code to load it in your index.php from the used template. be sure, that you use the correct path (in example in a sub-directory of the template)Code: [Select]<!-- jQuery --><script src="<?php echo TEMPLATE_DIR; ?>/js/jquery.min.js"></script>
Quote from: jacobi22 on June 28, 2016, 07:12:04 PMdeactivate this line (if in use in your template)Code: [Select]register_frontend_modfiles('jquery');if you use SP6, go to AdminTools -> Frontend Output Filter and deactivate the Jquery, if its activatedat last step, add your favorite jquery file into your template folder and add the code to load it in your index.php from the used template. be sure, that you use the correct path (in example in a sub-directory of the template)Code: [Select]<!-- jQuery --><script src="<?php echo TEMPLATE_DIR; ?>/js/jquery.min.js"></script>OK, thanks. Will give it a try and see how it goes.