cemsdb
Hi
In that post i moved the title code of articles above, if you hide the icons and other values it also hide the Title of articles.
You can see my changes in "/html/com_content/article/default.php" in template "ja_oslo".
Open this file
find this code
<?php if(!empty($this->print)):
if ($icons):
echo JLayoutHelper::render('joomla.content.icons', array('item' => $this->item, 'params' => $params, 'print' => isset($this->print) ? $this->print : null));
endif;
if ($params->get('show_title')) :
echo JLayoutHelper::render('joomla.content.item_title', array('item' => $this->item, 'params' => $params, 'title-tag'=>'h1'));
endif;
endif; ?>
and replace it with
<?php if ($params->get('show_title')) :
echo JLayoutHelper::render('joomla.content.item_title', array('item' => $this->item, 'params' => $params, 'title-tag'=>'h1'));
endif;
?>
<?php if(!empty($this->print)):
if ($icons):
echo JLayoutHelper::render('joomla.content.icons', array('item' => $this->item, 'params' => $params, 'print' => isset($this->print) ? $this->print : null));
endif;
endif; ?>
Please check the title is showing now.
If any error, kindly provide us the details ask in previous post.