Not out of the box. It would require code changed to that extension.chfs wrote: Sun Sep 03, 2017 11:32 pm will compatible with RegCheck?
https://github.com/tas2580/regcheck
Many people fill in the wrong email.RMcGirr83 wrote: Tue Sep 05, 2017 12:56 am regcheck just checks if the email is allowed. If you use that and the email is allowed then why would you want to check on the email that is entered as a validation?
Code: Select all
<!-- IF S_REGISTRATION -->
<script type="text/javascript">
$(function() {
var $form = $('#register');
var new_dl = '';
new_dl += '<dl>';
new_dl += '<dt><label for="email_confirm">{LA_CONFIRM_EMAIL}{LA_COLON}</label></dt>';
new_dl += '<dd><input type="email" name="email_confirm" id="email_confirm" size="25" maxlength="100" value="{EMAIL_CONFIRM}" class="inputbox autowidth" title="{LA_CONFIRM_EMAIL}" autocomplete="off" /></dd>';
new_dl += '</dl>';
$form.find('input[type=email][id=email]').parents('dl').after(new_dl);
$('input[type=email][id=email_confirm]').on("cut copy paste", function(e) {
e.preventDefault();
});
});
</script>
<!-- ENDIF -->
Thank you Steve. Where should this be placed?Steve wrote: Tue Sep 05, 2017 5:52 amyou could use this to prevent copy and paste.Code: Select all
<!-- IF S_REGISTRATION --> <script type="text/javascript"> $(function() { var $form = $('#register'); var new_dl = ''; new_dl += '<dl>'; new_dl += '<dt><label for="email_confirm">{LA_CONFIRM_EMAIL}{LA_COLON}</label></dt>'; new_dl += '<dd><input type="email" name="email_confirm" id="email_confirm" size="25" maxlength="100" value="{EMAIL_CONFIRM}" class="inputbox autowidth" title="{LA_CONFIRM_EMAIL}" autocomplete="off" /></dd>'; new_dl += '</dl>'; $form.find('input[type=email][id=email]').parents('dl').after(new_dl); $('input[type=email][id=email_confirm]').on("cut copy paste", function(e) { e.preventDefault(); }); }); </script> <!-- ENDIF -->
Thanks
Yes, I haven't had the chance to finalize and submit for validation. It's on the list though.
Correct, prosilver-inherited styles should work. Other styles will require manual edits.
Good job. Super!