Joomla fix: Contentheading h1

Published in Website Design | On May 25th, 2008

If you wan to give your Joomla better SEO, change the titles to H1.
Go to components > com_content > content.html.php around line 620 and change

The first row we need to change has a closing a tag at the end, for some reason WP doesn’t show it here in the code so i dropped the <

<?php echo $row->title;?>/a>

to

<h1><?php echo $row->title;?></h1>/a>

After that there's another one

<?php echo $row->title;?>

to

<h1><?php echo $row->title;?></h1>
Share |

2 Responses to “Joomla fix: Contentheading h1”

  1. admin says:

    Sorry, our Joomla tips are for Joomla 1.0.15 as opposed to Joomla 1.5 which has a different structure.

  2. rowby goren says:

    The file “content.html.php” doesn’t exist at least in the current Joomla 1.5.9 installation.

    Any alternatives?

Leave a Reply