Hi
I cannot see Your page unfortunatelly. Link is showing me "Server cannot be found" message. File attachment is in the same group as facebook, twitter and google+ button. So maybe if You are not using any of this buttons attachment is hiding somehow. Try edit file /html/com_k2/template/default/item.php find code:
- Code: Select all
<?php if($params->get('itemAttachments') && count($this->item->attachments)): ?>
<div class="itemAttachmentsBlock">
<span><?php echo JText::_('K2_DOWNLOAD_ATTACHMENTS'); ?></span>
<ul class="itemAttachments">
<?php foreach ($this->item->attachments as $attachment): ?>
<li>
<a title="<?php echo K2HelperUtilities::cleanHtml($attachment->titleAttribute); ?>" href="<?php echo $attachment->link; ?>"><?php echo $attachment->title; ?>
<?php if($params->get('itemAttachmentsCounter')): ?>
<span>(<?php echo $attachment->hits; ?> <?php echo ($attachment->hits==1) ? JText::_('K2_DOWNLOAD') : JText::_('K2_DOWNLOADS'); ?>)</span>
<?php endif; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
cut it and put in a different place before or after other elements You are sure are displaying right now.