Help with Vendr jquery widget
Permalink
Hey guys,
Fire let me say thanks for even taking the moment.
I'm trying to implement a jquery script for Vendr (a ecommerce shop solution) into my current concrete5 site running the touching theme: [html]http://www.concrete5.org/marketplace/themes/touching/[/html]
I accidentally put the script into my concrete.php file initially (saw head tags) and actually had the store working on the login page to the dashboard :) (The script basically puts a hover button to a shopping cart/store).
My attempts with the touching theme header.php are proving unsuccessful though.
Here is the head of that file with my script. Nothing is showing up on my page however.
Again any help would be much appreciated
Fire let me say thanks for even taking the moment.
I'm trying to implement a jquery script for Vendr (a ecommerce shop solution) into my current concrete5 site running the touching theme: [html]http://www.concrete5.org/marketplace/themes/touching/[/html]
I accidentally put the script into my concrete.php file initially (saw head tags) and actually had the store working on the login page to the dashboard :) (The script basically puts a hover button to a shopping cart/store).
My attempts with the touching theme header.php are proving unsuccessful though.
Here is the head of that file with my script. Nothing is showing up on my page however.
<head> <!-- Site Header Content //--> <link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('main.css')?>" /> <link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" /> <?php Loader::element('header_required'); ?> <script type="text/javascript" charset="utf-8"> var is_ssl = ("https:" == document.location.protocol); var setsHost = is_ssl ? "https://vendr.com/widget/" : "http://vendr.com/widget/"; document.write(unescape("%3Cscript src='" + setsHost + "js/widget_over.js?v=1' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript" charset="utf-8"> var store_widget_options = {}; store_widget_options.ver = 1; store_widget_options.display = "overlay"; store_widget_options.placement = "right";
Viewing 15 lines of 21 lines. View entire code block.
Again any help would be much appreciated