Forum Replies Created
-
AuthorPosts
-
natekMember
Well contact form 7 is great but i am having issues with it so I might as well try to get this form working than trying to get that one working…
So here is my solution pending you can assist. Ill change the fields of City, State, and Postcode to be Credit Card merchant, credit card number, and expiration date. Ill just use the Address box as the whole address rather than just the house number.
The two issues will be to get one of these fields as a dropdown rather than just a blank field. How can I do this?
The second will be how to limit the amount of characters that can be input into the fields.
Let me know what I can do. Thanks!
natekMemberI would prefer not to process transactions that way. I guess the best option is to use a third party form and customize that to my liking. I just really liked how your form included the product details on the right side. Is there a way to do that if I use a 3rd party form? That way people knew what they were purchasing.
I would also consider paying for your form to be customized. Would you be interested? if so, what would the price be?
natekMemberWhat 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;
$body .= “n”.ESTORE_CREDIT_CARD.”: “.$_POST;
$body .= “n”.ESTORE_EXPIRATION_DATE.”: “.$_POST;
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.
-
AuthorPosts