
Originally Posted by
llmcdonald
Will this plugin work without the css/js loader? When I install css/js loader it messes up the css on my site.
I suspect if your site has issues with CSS/JS loader than it isn't configured/installed correctly, including building the auto_loaders
However you could...use the auto loaders in the includes/templates/YOUR_TEMPLATE/auto_loaders/ to piece together, the files needed for each page.
And then add them into the html_header.php or my personal preference tpl_footer.php both located in the includes/templates/YOUR_TEMPLATE/common/
HOWEVER. one benefit of CSS/JS loader is avoiding loading CSS/JS files twice. So make sure you are only running 1 version of jQuery, and 1 migrate file if needed.
For PCI compliance you should be running the most recent version of jquery which is 1.11.2 as of this post. My personal choice is to load from a CDN. But you could load from your site as well, try to load a minified copy example below. The migrate only need to be run if there is older code that doesn't work ideally if you could load without it that would be preferred.
HTML Code:
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>