Contact Page J1.6
If you are looking to remove the word Contact and Contact Form from your Joomla 1.6.x
From within the html folder of your template, for example /templates/beez20/html do the following;
create a folder called com_contact
within that create a folder called contact
copy the default.php from within /components/com_contact/views/contact/tmpl/
You should now have /templates/beez20/html/com_contact/contact/default.php
Edit the default.php and change the code on line 48
<?php if ($this->params->get('presentation_style')=='plain'):?>
<?php echo '<h3>'. JText::_('COM_CONTACT_DETAILS').'</h3>'; ?>
<?php endif; ?>
To remove the word "Contact" I just commented out the echo statement, but you can remove the whole statement if you like.
<?php if ($this->params->get('presentation_style')=='plain'):?>
<?php // echo '<h3>'. JText::_('COM_CONTACT_DETAILS').'</h3>'; ?>
<?php endif; ?>
Again, on line 74 you will find a similar code chunk the one above. Do the same here and you will remove the "Contact Form" message.
<?php if ($this->params->get('presentation_style')=='plain'):?>
<?php // echo '<h3>'. JText::_('COM_CONTACT_EMAIL_FORM').'</h3>'; ?>
<?php endif; ?>
