payment

Online payments for a middleman

妖精的绣舞 提交于 2019-12-17 20:07:37
问题 I'm new to online payments and would like some opinions on my task. Here is the scenario: I have a website where people buy and sell digital photos. A seller has a photo and wants to sell it. They create an ad on the site and upload the photo into the website database. Buyers looking for photos come to the site and buy them. The buyer pays the asking amount and then can download the photo. As the middleman, I'd like to charge the seller a fee or percentage of the selling price. The buyer

How To Prevent Woocommerce from selecting default payment method on Checkout page?

≯℡__Kan透↙ 提交于 2019-12-17 19:56:30
问题 On Checkout page payment methods are presented and the first one is selected by default and automatically. I need to prevent the selection so no payment method is initially selected by WC. I tried 2 things so far: jQuery from Chrome console: jQuery( '.payment_methods input.input-radio' ).prop('checked', false); result: [<input id=​"payment_method_paypal" type=​"radio" class=​"input-radio" name=​"payment_method" value=​"paypal" data-order_button_text=​"Proceed to PayPal" checked=​"checked">​,

Accept payment on ios apps?

最后都变了- 提交于 2019-12-17 10:30:20
问题 is this okay to implement payment system on ios apps? I would like to make an app that can browse products on my e-commerce website then let people buy products on my app. I'm asking this question because i've heard it is violating apple's policy. 回答1: It apparently depends on the what is being sold. The definitive answer can only be gotten from your lawyer's reading of the Apple agreement, of course, but I can speak from a little experience. Apple themselves say that: if a product is sold in

Performing Transaction based on previous Transactions in Authorize.NET CIM

a 夏天 提交于 2019-12-13 21:08:45
问题 I am new to Authorize.NET. Is reference transaction possible in authorize.net. For example: User A comes and enters the Credit Card details for first time, he does the payment. Now for the second time onwards when he does the payment the details of the previous transaction has to be used (i.e. he will not be entering the details again, the first payment details has to be used by default) and payment has to be done. Is there any such option available in Authorize.NET CIM service. I am using

Paytabs android integration- Program type already present: okhttp3.Authenticator

混江龙づ霸主 提交于 2019-12-13 19:44:03
问题 I integrate PayTabs payment getaway in my project it run correct on my debugging version then get this error when generate signing apk from my project this error appear when generate sign apk and this is my gradle dependences implementation 'com.android.support:design:26.1.0' implementation 'com.android.support:cardview-v7:26.1.0' implementation 'com.android.support:recyclerview-v7:26.1.0' implementation 'com.android.support:gridlayout-v7:26.1.0' implementation 'com.android.support:multidex:1

magento create unpaid invoice programmatically

孤街醉人 提交于 2019-12-13 19:03:17
问题 I'm creating invoices programmatically by an own observer for the sales_order_save_after event. Unfortunately, the invoice is immediately marked as paid. How can I achieve that the new invoice is still open and a admin has to set it to paid state? My code so far: $invoiceId = Mage::getModel('sales/order_invoice_api') ->create($order->getIncrementId(), array()); $invoice = Mage::getModel('sales/order_invoice') ->loadByIncrementId($invoiceId); $invoice->capture()->save(); EDIT: To make my

Stripe throws invalid integer error

时间秒杀一切 提交于 2019-12-13 15:01:42
问题 I am unable to charge the amount $49.99 in stripe. I am going through the following links but nothing workout Stripe Checkout Price error - Invalid Integer Stripe Rails: Invalid integer: 1.06 I would like to charge the amount as it is. I don't want to round off the payment stripe.charges.create({ // Charge the customer in stripe // amount: req.query.amount, amount: 49.99, currency: 'usd', customer: req.customer }).then(function(charge) { // Use and save the charge info in our db var

Help, need example payment application for iPhone

ぐ巨炮叔叔 提交于 2019-12-13 11:05:34
问题 Please provide me any link or application which provides payment functionality on iPhone... for example - if the user wants to send mail from the app, i need to charge money for it.. Thanks for any help 回答1: Maybe following articles will help you: In App Purchase Programming Guide iPhone Tutorial – In-App Purchases Things I learned implementing my first InAppPurchase In App Purchases: A Full Walkthrough 来源: https://stackoverflow.com/questions/4161770/help-need-example-payment-application-for

sending request to apple - from iphone custom application

天大地大妈咪最大 提交于 2019-12-13 05:13:58
问题 Let me explain the application. Before starting my question, I would like to say the following. (for specification of my question) For example in Mac os User Starts iTunes User Clicks on iTunes Store User can see the different applications, videos etc. After he will select specific application/video to purchase it. ID - Password is required. ( this entire process is before the purchase, means doesn't require any apple id password ) I have to develop an application which fulfill same

Is this possible with Magento?

有些话、适合烂在心里 提交于 2019-12-13 05:03:26
问题 I want to create a private store (disable frontend user registration and guest checkout, only enable the option for the admin to add new users). I want to give the registered user the possibility to purchase items without paying at the checkout. I don't want to add products with the price set to 0.00, because at the end of the month I want to send them the invoice covering all the purchases for that month (and for that, I want the products to have the price). It this possible with Magento?