kdewson
Hi
The forum thread is fine, the request is open new topic for new topic questions.
Here are the changes: file "/html/com_content/featured/default_item.php" in template "ja_bookshop"
Here is code i moved in this file in line 94
<section class="readmore">
<a class="btn btn-primary" href="<?php echo $link; ?>" itemprop="url">
<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_TITLE');
else :
echo JText::_('TPL_COM_CONTENT_READ_MORE');
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif; ?>
</span>
</a>
</section>
Regards