It seems the hidden variable ‘option’ is missing in overridden contact-form layout. To fix this issue, open file:
templates/ja_ores/html/com_contact/contact/default_form.php, find this block of code (end of file)
<input type=”hidden” name=”view” value=”contact” />
<input type=”hidden” name=”id” value=”<?php echo (int)$this->contact->id; ?>” />
<input type=”hidden” name=”task” value=”submit” />
<?php echo JHTML::_( ‘form.token’ ); ?>
</form>
and replace with:
<input type=”hidden” name=”option” value=”com_contact” />
<input type=”hidden” name=”view” value=”contact” />
<input type=”hidden” name=”id” value=”<?php echo (int)$this->contact->id; ?>” />
<input type=”hidden” name=”task” value=”submit” />
<?php echo JHTML::_( ‘form.token’ ); ?>
</form>