Phil Banks Posted May 29, 2019 Report Posted May 29, 2019 Hi folks, I'm trying to set up Stripe on my mailer, but can't work out how. Can anybody explain in "simpleton" language ? Any advice is muchly appreciated. Thanks in advance Phil weblord 1 Quote Consistently Generating Signups + Sales Since 2015
weblord Posted May 29, 2019 Report Posted May 29, 2019 Do you have any manual there that i can work with?please kindly attach it. im going to help you.Hi folks, I'm trying to set up Stripe on my mailer, but can't work out how. Can anybody explain in "simpleton" language ? Any advice is muchly appreciated. Thanks in advance Phil Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
Phil Banks Posted May 29, 2019 Author Report Posted May 29, 2019 I'm taking over another mailer that already has it set up. but it looks like I can't just copy and paste the basic code into the appropriate boxes. Here's an example of the code on the site that works properly@ <form action="charge.php" method="POST"><input type="hidden" name="amount" value="[amount]"><input type="hidden" name="item_name" value="[item_name]"><input type="hidden" name="item_number" value="[item_number]"><input type="hidden" name="email" value="[user_email]"><input type="hidden" name="userid" value="[user_id]"><input type="hidden" name="txn_type" value="item"><input type="hidden" name="call_stripe" value="1"><input type="hidden" name="onetime" value="1"><script src="https://checkout.stripe.com/checkout.js" class="stripe-button" data-key="[merchant_id]" data-currency="USD" data-amount="[amount]" data-name="Midnightmailer" data-description="[item_name]" data-email="[user_email]" data-image="https://midnightmailer.com/images/stripe_logo.png" data-locale="auto" data-zip-code="true" data-billing-address="false" data-allow-remember-me="true" data-panel-label="Pay Now {{amount}}" data-label="Pay with Card"></script></form> And this is mine. <form action="charge.php" method="POST"><input type="hidden" name="amount" value="[amount]"><input type="hidden" name="item_name" value="[item_name]"><input type="hidden" name="item_number" value="[item_number]"><input type="hidden" name="email" value="[user_email]"><input type="hidden" name="userid" value="[user_id]"><input type="hidden" name="txn_type" value="item"><input type="hidden" name="call_stripe" value="1"><input type="hidden" name="onetime" value="1"><script src="https://checkout.stripe.com/checkout.js" class="stripe-button" data-key="[merchant_id]" data-currency="USD" data-amount="[amount]" data-name="Proactivemailer" data-description="[item_name]" data-email="[user_email]" data-image="https://midnightmailer.com/images/stripe_logo.png" data-locale="auto" data-zip-code="true" data-billing-address="false" data-allow-remember-me="true" data-panel-label="Pay Now {{amount}}" data-label="Pay with Card"></script></form> weblord 1 Quote Consistently Generating Signups + Sales Since 2015
weblord Posted May 29, 2019 Report Posted May 29, 2019 the only difference is line 15, while the first one on line 15 has this data-name="Midnightmailer" data-name="Proactivemailer" I'm taking over another mailer that already has it set up. but it looks like I can't just copy and paste the basic code into the appropriate boxes. Here's an example of the code on the site that works properly@ <form action="charge.php" method="POST"><input type="hidden" name="amount" value="[amount]"><input type="hidden" name="item_name" value="[item_name]"><input type="hidden" name="item_number" value="[item_number]"><input type="hidden" name="email" value="[user_email]"><input type="hidden" name="userid" value="[user_id]"><input type="hidden" name="txn_type" value="item"><input type="hidden" name="call_stripe" value="1"><input type="hidden" name="onetime" value="1"><script src="https://checkout.stripe.com/checkout.js" class="stripe-button" data-key="[merchant_id]" data-currency="USD" data-amount="[amount]" data-name="Midnightmailer" data-description="[item_name]" data-email="[user_email]" data-image="https://midnightmailer.com/images/stripe_logo.png" data-locale="auto" data-zip-code="true" data-billing-address="false" data-allow-remember-me="true" data-panel-label="Pay Now {{amount}}" data-label="Pay with Card"></script></form> And this is mine. <form action="charge.php" method="POST"><input type="hidden" name="amount" value="[amount]"><input type="hidden" name="item_name" value="[item_name]"><input type="hidden" name="item_number" value="[item_number]"><input type="hidden" name="email" value="[user_email]"><input type="hidden" name="userid" value="[user_id]"><input type="hidden" name="txn_type" value="item"><input type="hidden" name="call_stripe" value="1"><input type="hidden" name="onetime" value="1"><script src="https://checkout.stripe.com/checkout.js" class="stripe-button" data-key="[merchant_id]" data-currency="USD" data-amount="[amount]" data-name="Proactivemailer" data-description="[item_name]" data-email="[user_email]" data-image="https://midnightmailer.com/images/stripe_logo.png" data-locale="auto" data-zip-code="true" data-billing-address="false" data-allow-remember-me="true" data-panel-label="Pay Now {{amount}}" data-label="Pay with Card"></script></form> Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
weblord Posted May 29, 2019 Report Posted May 29, 2019 in other words, in laymen's word, that line causes the error. see what data-name is required of your online app. Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
Phil Banks Posted May 30, 2019 Author Report Posted May 30, 2019 Thanks. I'll check it out. weblord 1 Quote Consistently Generating Signups + Sales Since 2015
Phil Banks Posted May 30, 2019 Author Report Posted May 30, 2019 Where do I find the data name I need to use in my Stripe account ? I can't find it. never felt this stupid in my life before ! weblord 1 Quote Consistently Generating Signups + Sales Since 2015
weblord Posted May 30, 2019 Report Posted May 30, 2019 According to this page, and this documentations.data-name pertains to the name of your website <script src="https://checkout.stripe.com/checkout.js" class="stripe-button" data-key="pk_Fhlzwtm9SCx6Uxww5fNXX8CUbwwAc" data-amount="2000" data-name="Demo Site" data-description="2 widgets ($20.00)" data-image="/128x128.png"> </script> Where do I find the data name I need to use in my Stripe account ? I can't find it. never felt this stupid in my life before ! Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
Phil Banks Posted May 30, 2019 Author Report Posted May 30, 2019 Thanks for that. I just can't work out why it doesn't work properly. When I click the payment button, it loads the Stripe payment box ok, but the payment amount is only $0.09 when it should be $9.97. Completely dumbfounded by it. weblord 1 Quote Consistently Generating Signups + Sales Since 2015
weblord Posted May 30, 2019 Report Posted May 30, 2019 check this line, might be the decimal placement. data-amount="[amount]" Thanks for that. I just can't work out why it doesn't work properly. When I click the payment button, it loads the Stripe payment box ok, but the payment amount is only $0.09 when it should be $9.97. Completely dumbfounded by it. Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
Phil Banks Posted May 30, 2019 Author Report Posted May 30, 2019 Surely that's the amount on the corresponding sales page in the LFM script, isn't it ? I've got Stripe on the case and they're confused as to why also. I'm thinking there may be something in the LFMVM script that's causing it. I replaced my Payza info with the Stripe info, as Payza is now obsolete. Maybe that can't be done that way. weblord 1 Quote Consistently Generating Signups + Sales Since 2015
weblord Posted May 30, 2019 Report Posted May 30, 2019 try this" data-amount="9.97" Surely that's the amount on the corresponding sales page in the LFM script, isn't it ? I've got Stripe on the case and they're confused as to why also. I'm thinking there may be something in the LFMVM script that's causing it. I replaced my Payza info with the Stripe info, as Payza is now obsolete. Maybe that can't be done that way.might be the setting up of stripe as i see it from the example code is pretty straightforward just like paypal do. maybe there's something in the script that you bought that prevents it, either way just check carefully every line and see if you have filled it up accurately Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
weblord Posted May 30, 2019 Report Posted May 30, 2019 sorry i have to say my additional comment herethe way i see it it's pretty straightforward in setting up stripe, it just fill in the blanks.let's see if you change the amount to that amount, let's see if it take effects. if not then there's might be something with the script you bought that prevents it, anyways stripe support team can fix it. Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
Phil Banks Posted May 30, 2019 Author Report Posted May 30, 2019 Thanks for all your advice. I spoke to Chris at LFMTE Host and he says it needs to be programmed in, so I'll have to find a programmer to do it by the sounds of things. Thanks again. Phil weblord 1 Quote Consistently Generating Signups + Sales Since 2015
weblord Posted May 31, 2019 Report Posted May 31, 2019 i wish to help you out Phil. I will do my best to resolve the issue. I have sent you a private message about myself. thanks for considering. looking forward to work with you.Thanks for all your advice. I spoke to Chris at LFMTE Host and he says it needs to be programmed in, so I'll have to find a programmer to do it by the sounds of things. Thanks again. Phil Phil Banks 1 Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
downliner Posted August 12, 2019 Report Posted August 12, 2019 Yep it's not as straightforward as Paypal but it can be done. I managed to integrate it into TDL. Quote Owner of The Downliner, VMPayday and Trck.Biz
weblord Posted August 12, 2019 Report Posted August 12, 2019 i think you're good at it and you're a techie guyYep it's not as straightforward as Paypal but it can be done. I managed to integrate it into TDL. Quote pls read my blog | Unlimited Domains with Unlimited WebHosting
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.