Disable Contact Form Tooltip
Add this to javascript code:
/templates/jf_calla-exteriors/index.php -> before </body> <script> jQuery('#contact-form label').removeClass('hasTooltip'); </script>
Contact form does not work(Field required:subject)
components>com_contact>models>forms>contact.xml line 23
remove
<field name="contact_subject" type="text" id="contact-emailmsg" size="60" description="COM_CONTACT_CONTACT_MESSAGE_SUBJECT_DESC" label="COM_CONTACT_CONTACT_MESSAGE_SUBJECT_LABEL" filter="string" validate="contactemailsubject" required="true" />
Hi Guys
Came across this thread but after I had fixed the same problem.
You need to go to the template folder (jf-calla-exteriors)/html/com_contact/contact/default_form.php-
insert these few lines just before the bits about contact_message
<div class="control-group"> <div class="control-label"><?php echo $this->form->getLabel('contact_subject'); ?></div> <div class="controls"><?php echo $this->form->getInput('contact_subject'); ?></div> </div>