This manual covers the standard K2 template, found at the following location:
components/com_k2/templates/default/item.php
From line 345 find the following code:
| components/com_k2/templates/default/item.php | |
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | <?php if($this->item->params->get('itemShareLinks')): ?> <!-- Item social links --> <div |
Place the follwing line in between:
(after: "<li><a class="technorati")
<li
><a
class="hyves" title="<?php echo JText::_("Add to Hyves"); ?>" href="http://www.hyves-share.nl/button/tip/?tipcategoryid=12&rating=5&title=<?php echo $this->item->title; ?>&body=<?php echo $this->item->socialLink; ?>" target="_blank"><span
><?php echo JText::_("Add to Hyves"); ?></span
></a
></li
>
So you should get this:
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | <?php if($this->item->params->get('itemShareLinks')): ?> <!-- Item social links --> <div |
You can eventually remove the social links you're not using bij remove them from <li> to </li>. Or you can rearrange the items.
To finish the whole story, you can add a language item.
Dit doe je op de volgende wijze:
Open ' nl-NL.com_k2.ini ' That's in the folder '/language/nl-NL/'
(Unless you don't use the dutch language: just replace 'nl-NL' by 'en-GB')
In this file you find the next line:
ADD TO TECHNORATI=Toevoegen aan Technorati
An below this line you add the next line:
ADD TO HYVES=Tip plaatsen op Hyves(or in english file: ADD TO HYVES=Tip to Hyves
Now you have a hyves social button in your K2 component.
If you're lazy, you can download this at the bottom of this article. Upload the contents of the file to the root of your joomal installation and you're done.
Good luck.



