I am currently in the process of looking into using Magento Go for a customer. The big thing is that they need to have Assistly's Chat Integration into this store. Magento Go uses jQuery 1.3.1 to run their platform combined with prototype js. The Assistly Code makes a call reference to 1.4.2 jQuery. It mentions in the code that if you already have a jQuery call, to remove the reference but doing so causes the embedded widget to not work. Below is the code, can someone explain to me why this wont work with jQuery 1.3.1 and if so, how I would go about modifying the code to work with it (you can even point me in a direction, i am willing to do the work on this), i've tried countless ways from different kb articles and support forum of Magento. Below is the code with customers domain name changed.
<!--If you already have jquery on the page you don't need to insert this script tag-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<link href="https://d3j15y3zsn7b4t.cloudfront.net/assets/widget_embed.cssgz?1319263259" media="screen" rel="stylesheet" type="text/css" />
<!--If you already have fancybox on the page this script tag should be omitted-->
<script src="https://d3j15y3zsn7b4t.cloudfront.net/assets/widget_embed_libraries.jsgz?1319263259" type="text/javascript"></script>
<script>
// ********************************************************************************
// This needs to be placed in the document body where you want the widget to render
// ********************************************************************************
new ASSISTLY.Widget({
version: 1,
site: 'my.sitehere.com',
port: '80',
type: 'chat',
displayMode: 1, //0 for popup, 1 for lightbox
features: {
offerAlways: true,
offerAgentsOnline: false,
offerRoutingAgentsAvailable: false,
offerEmailIfChatUnavailable: false
},
fields: {
ticket: {
// desc: '',
// labels_new: '',
// priority: '',
// subject: ''
},
interaction: {
// email: '',
// name: ''
},
chat: {
//subject: ''
},
customer: {
// company: '',
// desc: '',
// first_name: '',
// last_name: '',
// title: ''
}
}
}).render();
</script>
Thanks in advanced for anyone who is looking at this.