Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Letting Google host Jquery with Theme Switcher?

google host jquery theme switcher

  • You cannot reply to this topic
No replies to this topic

#1 papagino

  • Community Member
  • 12 posts
  • Real Name:Dan
  • Gender:Male
  • Location:Canada

Posted 18 January 2012, 23:19

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