Hi
this forum is awesome!
thanks for helping me!
Now, after I managed to display my extrafields at the right position
Result = here:
blank.fuchs-net.de/index.php/sm.html
Now I need some tips with my lionks under the fulltext:
I have this 3 Links:
www I fb | Instagram
I added an icon to every link via classes.
So far ok.
But I would like to have only the icon as a clickable Link.
I know - maybe not a K2 topic, but maybe someone has an idea how?!
Here is the snippet of the three exgtrafield links:
thanks so much for all of ur support!
<?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
<?php if(($extraField->name == 'webseite') &&( $extraField->value != '')): ?>
<i class="fa fa-external-link fa-2x" aria-hidden="true"><span class="itemExtraFieldsValue webseite "></i><?php echo $extraField->value; ?></span><?php endif;?>
<?php if(($extraField->name == 'facebook') &&( $extraField->value != '')): ?>
<i class="fa fa-facebook fa-2x" aria-hidden="true"><span class="itemExtraFieldsValue facebook"></i><?php echo $extraField->value; ?></span><?php endif;?>
<?php if(($extraField->name == 'instagram') &&( $extraField->value != '')): ?>
<i class="fa fa-instagram fa-2x" aria-hidden="true"><span class="itemExtraFieldsValue instagram"></i><?php echo $extraField->value; ?></span><?php endif;?>
<?php endforeach; ?>