Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Letting Google host Jquery with Theme Switcher?


papagino

Recommended Posts

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...