Social Bookmarking can i move it up the page

October 08 Joomla Templates
GK User
Sun Dec 04, 2011 9:59 pm
Hi my site http://www.in2town.co.uk/Soap-Gossip which is a magazine site is using the social bookmarking on its pages but i would like to move them. so for example on the following page http://www.in2town.co.uk/news/gastric-band-hypnotherapy/trance-band-hypno-band-is-helping-women-become-slim i would like the social sharing at the top of the page instead of the bottom of the page.

I would like the social sharing to be in a position that will encourage people to press the buttons and promote my pages,

any help would be great
User avatar
Platinum Boarder

GK User
Mon Dec 05, 2011 7:36 am
Hi,

Open: \templates\gk_twn2\html\com_k2\templates\default\item.php

Find:

Code: Select all
<?php if($this->item->params->get('itemShareLinks')): ?>
           
            <!-- Item social links -->
           
            <div class="itemSocialLinksBlock">
                  <span><?php echo JText::_('K2_SOCIAL_SHARING'); ?></span>
                 <ul class="itemSocialLinks">
            <li><a class="googlebuzz" title="<?php echo JText::_('K2_ADD_TO_GOOGLE_BUZZ'); ?>" href="http://www.google.com/buzz/post?url=<?php echo $this->item->socialLink; ?>&amp;message=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_GOOGLE_BUZZ'); ?></span></a></li>
               
            <li><a class="facebook" title="<?php echo JText::_('K2_ADD_TO_FACEBOOK'); ?>" href="http://www.facebook.com/sharer.php?u=<?php echo $this->item->socialLink; ?>&amp;t=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_FACEBOOK'); ?></span></a></li>
               
            <li><a class="delicious" title="<?php echo JText::_('K2_ADD_TO_DELICIOUS'); ?>" href="http://del.icio.us/post?url=<?php echo $this->item->socialLink; ?>&amp;title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_DELICIOUS'); ?></span></a></li>
               
            <li><a class="digg" title="<?php echo JText::_('K2_DIGG_THIS'); ?>" href="http://digg.com/submit?url=<?php echo $this->item->socialLink; ?>&amp;title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_DIGG_THIS'); ?></span></a></li>
               
            <li><a class="reddit" title="<?php echo JText::_('K2_ADD_TO_REDDIT'); ?>" href="http://reddit.com/submit?url=<?php echo $this->item->socialLink; ?>&amp;title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_REDDIT'); ?></span></a></li>
               
            <li><a class="stumble" title="<?php echo JText::_('K2_ADD_TO_STUMBLEUPON'); ?>" href="http://www.stumbleupon.com/submit?url=<?php echo $this->item->socialLink; ?>&amp;title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_STUMBLEUPON'); ?></span></a></li>
               
            <li><a class="myspace" title="<?php echo JText::_('K2_ADD_TO_MYSPACE'); ?>" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=<?php echo $this->item->socialLink; ?>&amp;t=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_MYSPACE'); ?></span></a></li>
               
            <li><a class="technorati" title="<?php echo JText::_('K2_ADD_TO_TECHNORATI'); ?>" href="http://www.technorati.com/faves?add=<?php echo $this->item->socialLink; ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_TECHNORATI'); ?></span></a></li>
            <li class="clr"></li>
         </ul>
                  <div class="clr"></div>
            </div>
            <?php endif; ?>


Move before:

Code: Select all
<div id="k2Container" class="itemView<?php echo ($this->item->featured) ? ' itemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">


Then tell me if it helps!
User avatar
Platinum Boarder


cron