<?php if($params->get('itemReadMore') && $item->fulltext): ?>
<a class="moduleItemReadMore" href="<?php echo $item->link; ?>">
<?php echo JText::_('K2_READ_MORE'); ?>
</a>
<?php endif; ?>
In the above code (From the k2 contet module default.php template), the display of the read more link requires there to be full text (" && $item->fulltext)").
I would like to replace this with a statement that checks if a specific extra field has a value (I can do this with k2 cat item overrides, but not sure how to do it with the module template).
Many thanks.