2012-11-16 11:55:15 +00:00
|
|
|
<?php if(!class_exists('ShareYourCartBase',false)) die('Access Denied'); ?>
|
2012-12-12 15:58:54 +00:00
|
|
|
<a href="<?php echo $this->SHAREYOURCART_BUTTON_URL ?>" class="shareyourcart-button <?php if (isset($is_product_page) && $is_product_page) echo "product_button"; ?> <?php echo ( $this->getConfigValue('button_position') == 'floating' ? 'button_iframe' : 'button_iframe-normal');?> <?php echo ( !$this->getConfigValue('dont_set_height') ? 'button_height' : ''); ?>" <?php echo (isset($callback_url) && !empty($callback_url)) ? "data-syc-callback_url=$callback_url" : ''; ?> data-syc-skin="<?php echo $this->getConfigValue('button_skin');?>" data-syc-orientation="<?php echo $this->getConfigValue('button_position'); ?>" <?php if(!empty($position_after)): echo "data-syc-position-after=\"$position_after\""; elseif(!empty($position_before)): echo "data-syc-position-before=\"$position_before\""; endif; ?> <?php if(!empty($language)): echo "data-syc-language=\"$language\""; endif; ?> >
|
2012-04-30 19:50:35 +00:00
|
|
|
ShareYourCart Discount
|
|
|
|
</a>
|
|
|
|
|
2012-11-16 11:55:15 +00:00
|
|
|
<!--
|
2012-04-30 19:50:35 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
(function() {
|
|
|
|
var a = document.createElement('script'); a.type = 'text/javascript'; a.async = true;
|
|
|
|
a.src = '<?php echo $this->SHAREYOURCART_BUTTON_JS; ?>';
|
|
|
|
var b = document.getElementsByTagName('script')[0]; b.parentNode.insertBefore(a, b);
|
|
|
|
})();
|
2012-11-16 11:55:15 +00:00
|
|
|
</script> -->
|