in stripe-display this is how I made the name required;
`jQuery(document).ready(function() {
jQuery(“#ccg-stripe-payment-form”).submit(function(event) {
jQuery(“.payment-errors”).hide();
if(jQuery(‘#ccg-name’).val()==””){ //added to require name
alert(“Please enter your name”);
return false;
}
`
note I added the id=’ccg-name’ to the name input html.