Create an single with following article properties :
show_article : hide
show_author : show
There should not be any code rendered for article title.
An empty h2 tag is added to the code rendered
<h2 itemprop="name">
</h2>
Any system (it is HMTL rendering)
To solve this problem :
change lines 48 to 52 of file components/com_content/views/article/tmpl/default.php
actual code :
<h2 itemprop="name">
<?php if ($params->get('show_title')) : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
modified code to solve the issue :
<?php if ($params->get('show_title')) : ?>
<h2 itemprop="name">
<?php echo $this->escape($this->item->title); ?>
</h2>
<?php endif; ?>
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-02-17 18:25:26 |
Closed_By | ⇒ | brianteeman |
See #9142
@Dezi168 that makes sense ;) Can you send your change as Pull Request against staging?
If you need help see here: https://docs.joomla.org/Using_the_Github_UI_to_Make_Pull_Requests Thanks