This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--<div class="more_wrapper"> | |
<div class="vert-align"> | |
<a class="btn btn-info item_more" href="<?php echo $link; ?>"><span> | |
<?php if (!$params->get('access-view')) : | |
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE'); | |
elseif ($readmore = $this->item->alternative_readmore) : | |
echo $readmore; | |
if ($params->get('show_readmore_title', 0) != 0) : | |
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit')); | |
endif; | |
elseif ($params->get('show_readmore_title', 0) == 0) : | |
echo JText::sprintf('TPL_COM_CONTENT_READ_MORE'); | |
else : | |
echo JText::_('TPL_COM_CONTENT_READ_MORE'); | |
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit')); | |
endif; ?> | |
</span></a> | |
</div> </div>--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment