I too ran into this problem.
Open custom-contact-forms-front.php.
Go to line 428 or search for “FromName”:
$mail->FromName = $_POST[‘fName’] . ” ” . $_POST[‘lName’];
*Note that fName and lName are my custom slugs for my two name fields.
Go to line 581 or search for “FromName”:
$mail->FromName = $_POST[‘fName’] . ” ” . $_POST[‘lName’];
*Note that fName and lName are my custom slugs for my two name fields.
You can exchange this info for any data filled out in the form by using $_POST[‘slugName’] or hardcode any string like dfco said.
Best if luck!