Add back name for Stripe v3
This commit is contained in:
parent
cc2dce17bd
commit
7ef523cecd
1 changed files with 4 additions and 1 deletions
|
|
@ -452,7 +452,10 @@
|
|||
event.preventDefault();
|
||||
|
||||
|
||||
var options = {};
|
||||
var options = {
|
||||
name: document.getElementById('first_name').value + ' ' + document.getElementById('last_name').value
|
||||
};
|
||||
|
||||
if (document.getElementById('postal_code')) {
|
||||
options.address_zip = document.getElementById('postal_code').value;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue