Hi guys, just wanted to let you know I installed StoreBox on Joomla 3.3 (quickstart package) and soon noticed that article titles weren't showing, so I checked the code and found that there is an error in the php code as follows:
<h1 itemprop="name"
<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>
<a href="<?php echo $this->item->readmore_link; ?>" itemprop="url"
<?php echo $this->escape($this->item->title); ?>
</a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h1>
As you may notice too, the h1 and a tags are not closed so it creates an HTML code that won't show titles in the pages
I just fix it by closing the tag :
<h1 itemprop="name">
<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>
<a href="<?php echo $this->item->readmore_link; ?>" itemprop="url">
<?php echo $this->escape($this->item->title); ?>
</a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h1>