papagino Posted January 18, 2012 Posted January 18, 2012 Hi, I would like to know if there would be a way to change the code in Theme Switcher in order to have Google API references and let Google host the Jquery files. I am using a Shared SSL and the file size limit is around 100kb per files. If the files are to big, some of the objects or icons will not show up on my webpage. I know there is this mod on this post that you can do when not using Theme Switcher. http://www.css-oscommerce.com/cut-page-load-time-in-oscommerce-2-3-osc-to-css/ but the required code needing to be replaced are the one needed to be deleted by Theme Switcher: Needed to be deleted for Theme Switcher: <link rel="stylesheet" type="text/css" href="ext/jquery/ui/redmond/jquery-ui-1.8.6.css" /> <script type="text/javascript" src="ext/jquery/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="ext/jquery/ui/jquery-ui-1.8.6.min.js"></script> To have Google host Jquery: To replace the Jquery references in OSCommerce 2.3 open: includes/template_top.php replace: <script type="text/javascript" src="ext/jquery/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="ext/jquery/ui/jquery-ui-1.8.6.min.js"></script> with: <script type="text/javascript" src="<?php echo (isset($_SERVER['HTTPS']) && (strtolower($_SERVER['HTTPS']) == 'on') ? 'https://' : 'http://') . 'ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'; ?>"></script> <script type="text/javascript" src="<?php echo (isset($_SERVER['HTTPS']) && (strtolower($_SERVER['HTTPS']) == 'on') ? 'https://' : 'http://') . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js'; ?>"></script> Any ideas on how to modify the code in Theme Switcher to have Google host the Jquery files? Cheers Dan Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.