Hi,
I can't seem to display the ratings in k2 articles even though it is enabled.
What am I missing in template config?
Thanks
<?php if($params->get('itemTwitterButton',1)): ?>
<div class="itemTwitterButton"> <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal"<?php if($params->get('twitterUsername')): ?> data-via="<?php echo $params->get('twitterUsername'); ?>"<?php endif; ?>><?php echo JText::_('K2_TWEET'); ?></a>
<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
</div>
<?php endif; ?>
<?php if($params->get('itemFacebookButton',1)): ?>
<div class="itemFacebookButton">
<script type="text/javascript">
window.addEvent('load', function(){
(function(){
if(document.id('fb-auth') == null) {
var root = document.createElement('div');
root.id = 'fb-root';
$$('.itemFacebookButton')[0].appendChild(root);
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
}
}());
});
</script>
<div class="fb-like" data-send="false" data-width="260" data-show-faces="true"> </div>
</div>
<?php endif; ?>
<?php if($params->get('itemGooglePlusOneButton',1)): ?>
<div class="itemGooglePlusOneButton">
<g:plusone annotation="inline" width="120"></g:plusone>
<script type="text/javascript">
(function() {
window.___gcfg = {lang: 'en'}; // Define button default language here
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</div>
<?php endif; ?>