Anyone much experience with WooCommerce?

CPANathan

Elite Member
Jr. Executive VIP
Jr. VIP
Joined
Jul 9, 2019
Messages
2,439
Reaction score
8,750
Last hurdle on a beautiful project is this here;

1626350552677.png


I'm supposed to find a way to link a payment processor to this WooCommerce piece, what ways would I go about it?

Is there a better direction I should go?
 
Do you want to code the link to the payment processor or you want to add a plugin?

If you want to code, check stripe, they have a frontend API for charges, where it will load the payment form and then send a webhook to your backend confirming the payment.

Also, there are payment integration plugins that you can use into woocommerce/wordpress.
 
Last hurdle on a beautiful project is this here;

View attachment 179248

I'm supposed to find a way to link a payment processor to this WooCommerce piece, what ways would I go about it?

Is there a better direction I should go?

That button is doing a form submit which means when you click the button the web page is going to submit to where the form's action attribute points to, <form action="...some-page.php">. It's on this php page the form submits to is where you will need to code your logic to process the order.

You can read more here: https://www.w3schools.com/php/php_forms.asp
 
That button is doing a form submit which means when you click the button the web page is going to submit to where the form's action attribute points to, <form action="...some-page.php">. It's on this php page the form submits to is where you will need to code your logic to process the order.

You can read more here: https://www.w3schools.com/php/php_forms.asp
Thanks a million man, having a look into this now!
 
Back
Top