What I am trying to do is add 3 fields to the manual checkout page. I added:
define("ESTORE_CREDIT_CARD_TYPE", "Credit Card Merchant");
define("ESTORE_CREDIT_CARD", "Credit Card Number");
define("ESTORE_EXPIRATION_DATE", "Expiration Date (mm/yy)");
to the eng.php file.
I then added:
$body .= "\n".ESTORE_CREDIT_CARD_TYPE.": ".$_POST['credit card merchant'];
$body .= "\n".ESTORE_CREDIT_CARD.": ".$_POST['credit card number'];
$body .= "\n".ESTORE_EXPIRATION_DATE.": ".$_POST['expiration date'];
to the eStore_manual_gateway_functions.php file.
This does not work for me. What am I missing? Also, is it possible to have one of the fields a dropdown so they can select "Visa, MasterCard, Discover" as the credit card merchant?
I am not very well versed in PHP coding. Thanks.