Thank you Eric for all your tips.
So even shorter, I skipped the css style and used:
$('input[name="email_contant"]').css("display","none");
For Targetpay to use e-acceptgiro I used this code in the confirm page and confirm email:
<a href="http://www.qtouch.nl/myscript.php?i=accept&wd=[firstname]-[lastname]_[_submitted_]&wa=[_cart_total_]"><img src="http://www.mypage.nl/e-acceptgiro.jpg"></a>
if ($_GET['i']=="accept"){
/* remove space from the date/time to create the invoicenumber */
$invoicenumber = str_replace(' ', '_', $_GET['wd'] );
/* remove thousand and decimal seperators from the cart total to create the amount in cents */
$amount = str_replace( array(',', '.'), '', $_GET['wa'] );
$call="Location:
http://e-acceptgiro.nl/mynumber/56e5/{$ … nt}";
header($call);
}
Next puzzle is see if I can make <a href> optional in the final email and confirm page instead of only text.