Hello,
I need to make the article title alsoi H1 tag, can you tell me where and what I have to do?
Thank you Regards Michele
Hi michelerubin Could you please let me know what page you want the article heading to be h1? It is article detail page or home page or category page? In case you want to change the article heading tag in article detail page, please update this file: templats/ja_flix/html/com_content/article/default.php Fine the following coding: <h2 itemprop="headline"> <?php echo $this->escape($this->item->title); ?> </h2> Now change the h2 tag to h1 tag.
<h2 itemprop="headline"> <?php echo $this->escape($this->item->title); ?> </h2>
Best regards.
Hi,
that is what I need, solved modifing what you posted.