Wordpress wpmember plugin payment method with Infusionsoft payment gateway - wordpress

Is it possible to use wpmember (http://wordpress.org/plugins/wp-members/) plugin integrate payment method using Infusionsoft payment gateway?
How to use Infusionsoft payment gateway in wordpress?

InfusedWoo supports using the Infusionsoft payment gateway with WooCommerce. Works great.
WP Fusion is another option for creating a membership site and making WordPress aware of your contacts. I've helped clients with iMember360 and WP Fusion and much prefer the latter.

There are various plugins you can use with wordpress such as iMember360. This will give access to users who have purchased from you in Infusionsoft.
If you are looking to charge users on your wordpress site instead of using the infusionsoft shopping cart you can try Payment Gateway for WooCommerce
If you are interested in programming it yourself you can use the Order Service to create an order in PHP from a custom module/plugin you create.

Related

Is it possible to setup a new WooCommerce payment method with an API key without using a plugin in WordPress?

I am new to WordPress and I wanted to create a payment method in WordPress website. The payment method I want to use is only found in my country and it's new. It doesn't have a WordPress plugin yet in WooCommerce.
I only have the API key of the payment gateway so is there a way to use the API key on the website so that it can create a connection with the payment gateway? Or am I understanding the whole concept wrong anyway?
Any help would be appreciated and thank you in advance.
Yes you can add payment gateway support without creating an API. You can add your custom code in functions.php file of your child theme. Why child theme?
The way you integrate payment gateway with woocommerce is explained in this article by WooCommerce team itself.
https://docs.woocommerce.com/document/payment-gateway-api/
I would suggest you to go through it.
Instead of
add_action( 'plugins_loaded', 'init_your_gateway_class' );
You can use
add_action( 'wp_loaded', 'init_your_gateway_class' );
other codes goes as is.

Payment Gateway plugin for Wordpress site with and without Woocommerce

I have to make a Payment Gateway plugin for Wordpress based site. I came to know about Woocommerce for Wordpress. I have the following 2 questions:
1) If I make a Payment Gateway plugin for Woocommerce, can it be used on a Wordpress site that does not have Woocommerce?
2) If I make a Payment Gateway plugin for Wordpress, can it be used for Woocommerce as well?
1) If I make a Payment Gateway plugin for Woocommerce, can it be used on a Wordpress site that does not have Woocommerce?
No you cannot use Woocommerce Payment Gateway without Woocommerce as the Payment Gateway exctends Payment Gateway Class of Woocommerce. Hope this justify your question.
2) If I make a Payment Gateway plugin for Wordpress, can it be used for Woocommerce as well?
It depends on how you code. You need to keep the dependency based on Woocommerce plugin and need to check whether Woocommerce is active or not. To work with Woocommerce you need to extend the core class of Woocommerce.

WordPress multiple payment gateways selection on WooCommerce checkout

I am novice to WordPress and working on my first website in WordPress. I am using WordPress 4.9.8 with WooCommerce 3.5.2.
The requirement is, I want to provide different payment gateways list to customers on checkout page. e.g. paypal, worldpay, stripe etc., so that they can select the gateway they want and make the payment. I will use payment plugins for it.
But I am not sure how to provide list of payment gateways in checkout page. Can anyone help?
You can go to WooCommerce > Settings > Payments to enable/disable the payment gate you want, and if you want to use more payment gate like Stripe, you need to install a plugin like this https://wordpress.org/plugins/woocommerce-gateway-stripe/
Here is a screenshot showing my Payment Settings screen in WooCommerce, I'm using only PayPal and you can see it's enabled.
You can Add all payment method in Woocommerce.
WooCommerce → Settings → Checkout
Take a tour for this article hope it will help you
https://themeisle.com/blog/accept-payments-with-wordpress/
Let me know

Different Paypal accounts depending on product

I'm currently testing Woocommerce on my Wordpress site, and I'd like to know if it is possible to have two Paypal accounts linked to your shop. The idea would be to dedicate one account for a type of product and the other one for another type.
I've tried to look into the extensions available, but couldn't find a way to do this.
If you want to use Paypal, you can use Paypal Adaptive payments.
You can link each products to a Vendor as a marketplace website will do. ie : for woocommerce WC-Vendors, Dokkan...
Depending on which e-commerce plugin you have embed into your website, you can create a dedicated payment gateway that will switch the producct owner email, but this will a time wasting and maybe a untrustly method.
Hope it helps

Integrating two sites payment to single payment gateway in nopcommerce

I am having two sites, say abc.com and def.com. Now abc.com is developed with nopcommerce and have a payment gateway integrated to it by nopcommerce. Now in def.com there is a payment process. Now I should be able to do payment from def.com through abc.com(payment gateway) only which is build using nopcommerce. def.com is developed in MVC with EF.
Is this possible, If possible can some one give me some inputs on how to achieve this.
Thanks in advance..
In short, i dont think you can call nop commerce payment gateway from another application.
But there are few options to consider,
NopCommerce payment plug-in itself designed to be plug-able. So you can copy the payment plugin design of nopcommerce to your website and use nopcommerce plugin.
NopCommerce payment plug-in is also a mvc based solution. So you can add that plugin code into your application as a part of your website.

Resources