2011-12-11 01:08:33 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Single Product Share
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php if (get_option('woocommerce_sharethis')) : ?>
|
|
|
|
|
|
|
|
<div class="social">
|
2012-02-06 13:05:50 +00:00
|
|
|
<iframe src="https://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
|
2011-12-11 01:08:33 +00:00
|
|
|
<span class="st_twitter"></span><span class="st_email"></span><span class="st_sharethis"></span><span class="st_plusone_button"></span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php $sharethis = (is_ssl()) ? 'https://ws.sharethis.com/button/buttons.js' : 'http://w.sharethis.com/button/buttons.js'; ?>
|
|
|
|
|
|
|
|
<script type="text/javascript">var switchTo5x=true;</script><script type="text/javascript" src="<?php echo $sharethis; ?>"></script>
|
|
|
|
<script type="text/javascript">stLight.options({publisher:"<?php echo get_option('woocommerce_sharethis'); ?>"});</script>
|
|
|
|
|
|
|
|
<?php endif; ?>
|