- Edited
ok. the remaining issue has nothing to do with the contact form being in the same tbody, that said, i still think the contact form *should* be in it's own tbody, which can be achieved by editing include/client/open.inc.php and adding</tbody><tbody>just above these lines:<?php if (!$thisclient) { $uform = UserForm:()->getForm($_POST);the issue is being displayed by this bit of code: <tbody id="dynamic-form"> <?php if ($form) { include(CLIENTINC_DIR . 'templates/dynamic-form.tmpl.php'); } ?> </tbody> i've moved it to the end of the table, so it doesn't affect any of the other forms.its being called by this bit of code, in the same file, with the highlighted line being the cause. i've commented the line out, and the issue no longer displays, although i can't confirm that won't cause any other issues. not worked through that part yet.var changeCombo = function(){ var value = $("#cmb_value").val(); var data = $('', '#dynamic-form').serialize(); if(value ==""){ $('#dynamic-form').html(""); }else{ $('#dynamic-form').load('ajax.php/form/help-topic/' + value , data); }}