Official comment
Our developer Jonathan Preston submitted this JavaScript snippet that will suppress the ONTRAform pop up on mobile devices:
<script>
if ( /Android|webOS|iPhone|BlackBerry|IEMobile|Opera Mini/i.test( navigator.userAgent ) ) {
document.styleSheets[0].insertRule( ".OPF__modal-form, .opf__overlay{ display: none !important; }", 0 );
}
</script>
Add this to the "Custom footer code" section on the Settings of your ONTRApage. The JavaScript will suppress any ONTRAform pop ups if the customer is viewing the site on mobile phone.
