Skip to content

Instantly share code, notes, and snippets.

View kricore's full-sized avatar

Krikor Boghossian kricore

  • Greece
View GitHub Profile
@kricore
kricore / K2 Extrafields loop.
Last active January 3, 2016 23:59
Just a normal K2 extrafields loop with the addition of icon fonts for social links instead of simple links.. It requires the use of the extrafields aliases (eg twitter, facebook etc). The icon- and -circled prefix and suffixed are based on the Entypo icon font from Fontello.
<?php if($this->item->params->get('itemExtraFields') && count($this->item->extra_fields)): ?>
<!-- Item extra fields -->
<div class="itemExtraFields">
<?php /*<h3><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h3>*/ ?>
<ul>
<?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
<?php if($extraField->value != ''): ?>
<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
<?php // Check if it is a social link
$ealias = $extraField->alias;