Guys the problem in the end of this video is just because of a simple typo, the function process_payments has an extra 's' in the name, the real one should be like 'process_payment'. Just change the name of this function and it should work :) btw, this video is amazing, I just needed to add an extra payment method that doesnt even need to make api integrations so this simple code base is exactly what I was looking for and worked pretty good.
The tutorial is a mind opener and I like the way you show us the exact steps to build and get an own payment gateway on the go. I would recommend. Thanks for the woo series.
There is a typo at the end of the video with the function process_payments. It has an extra 's' in the name, it should be 'process_payment'. If you change the name of this function it should work. This video explains the basics of the gateway system without getting into the coding. Start a real life project coding by watching the second video in the series.ua-cam.com/video/blLqSVpT7Sk/v-deo.html
Appreciate your help & great coding skills. If you don't mind me asking, I want to integrate a local payment method in Saudi Arabia called "Mada". To which line in your code should I add the Mada API to integrate it directly to my Woocommerce store website ?
I am realy happy that i found your videos about Wordpress. Thank you so much for such an amazing video that you made it very simple to add a new payment gateway to Woocommerce. I realy appreciate this.
Nice tutorial i want to be able to open an on "Place Order" button click then take a user to a 3rd party payment gateway then return the result of the transaction to WP. Any idea how to do that ?
Hey there! Good Video - helped me out, BUT it seems that the instructions added in backend doesnt show up in e-mail and thank you-page. Any advise or help here?
Thanks for the kind comments. Did you watch the whole series? This first video was introductory but I go in depth for each of the functions. Let me know if you don’t find it and I will make a video exclusively for this.
great video, but I have a problem. I am unable to see the payment method at the checkout page. I have used several plugins by different authors but I never see it at the checkout page apart from those provided already by woocommerce like bank to bank transfer
Hello , Thanks for the tutorial Which PHP & Wordpress version you were using in this tutorial ? Can you please help with an issue that I am struggling with for 10 days trying to make it work My problem is that the payment method and its configurations shows in the backend but never shows on the checkout page as a payment method - I tried all the code files and versions from your github repo - I tried changing the currency (making it UGX on the options / tried also making it USD in the code) - When debugging , I see few errors of type (method or function deprecated ..) and I have tried to solve those error (by defining those methods) until they disappear but still not working Any help from you will be appreciated edit : it worked on PHP 7.3 & Wordpress 5.3.2 , but not on new releases.
Thanks for the question. Unfortunately, the COD gateway does not have a hook to that. Do you mind sharing the purpose for the form so we can see where to beat fit it and use the available WC hooks?
Thanks for the demo code, what i wish is to add an upload button before the confirming the payment, my intended noob payment is for the customer to scan QR and then later upload their scanned image as payment receipt back to the order before they can click confirm payment, if they do not upload "any image' , they will not be able to click confirm. In what point i can add this upload file control , will u be able to give some advice ?
10q for the video it is really helpful, I am trying to pass the total amount in int the checkout page and pass it to the payment gateway using Ajax. I'm having trouble figuring out how to get the value ( total payment amount of the order ) and pass it in a JSON format to the API. so how can I access the value in the Total field. it would really be helpful thanks.
Have you watched the whole video series? This video ua-cam.com/video/vxjl2VXYS1Y/v-deo.html helps in getting all the details fixed into the API. Quick note, you do not need AJAX to send JSON. WP sends all its data via JSON
That is realy amazing!!! but the question is to create your own payment getway that integrate bank ussd code to your ecommerce web. Please upload the video if you can
Hi. Thanks for the vote of confidence. You can make this work for your native country if you have a payment gateway you need to work for you. Just tweek it
@@TechiePress yes in my situation the bank who i want to work have no plugins for woocommerce, my site is wordpress site with WooCommerce. Now i must create payment gateway for my bank , like in this video yes?
@@TechiePress another question, would it be possible to use elements of this (minus the woocommerce) to create one for opencart? Seeing that opencart is also PHP.
Thank you for this great video. There does not seem to be anything out there other than using the available plugins and stripe costs are an arm and a leg. Now I have a question, I am using a payment gateway called SecuPay (Germany), I can't figure how I will be able to integrate their gateway to a plugin. Thanks again!
@@TechiePress Your instructions and the gateway works, also after the typo correction of the 'payment/payments' as someone pointed out. The process goes through, not sure how the person pays, perhaps I am missing something. I also still do not understand at what point you add the url of a PCI compliant gateway (such as SecuPay or any other) to your plugin and safely link it back again to your website. I have set up PayPal payments on websites without CMS but with WordPress it is still mystery to me. Oh, I see you suggested further below to go through the series. I will do so and most possibly comment how it turned out for me. Thank you!
Good one! But lack of some changes to woocommerce order while there is another vendor on the same store. Imagine that 'another vendor' has his products and sales them on your store. That 'another vendor' has his billing account in his option page and when the order is going on the product of that 'another vendor' - the billing and payment comes on the 'another vendors' account. Ofc there could be some options for comissions to store :D. Can you handle that? You could even sell that kind of plugin :)
@@TechiePress I Just dont know which to use, and they all are terrible, and they use payment to store and then store vendor sends comission to vendor. I wanted direct payment to vendor
Hi bro. Thanks a lot for the video. It was quite useful. I wanted to know how I can use return url from the payment gateway to the plugin to finalise the payment.
Hi. Thanks for watching. The Woocommerce plugin has good examples of this in the gateways directory. Take a look at the PayPal standard option for example.
HI!! great video. I just have one question. I have the payment gateway url, how I can add the link so when I hit "place order" send the transaction for the validation?
I see. It’s a whole series ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html but you are looking for video no. 5 ua-cam.com/video/UZZzn7euTgM/v-deo.html It shows you how to.
@@TechiePress Hi!! I create the plugin and I try to send the transaction but the payment gateway are not receiving the transaction and on my website show the method payment on checkout but on my client website not. can I send you the what I did and tell me where is the problem?
Thanks for watching. Flutterwave already has a Woocommerce plugin. Just download it from their website and integrate the payments with your approved account. developer.flutterwave.com/docs/plugins
Hi Thanks for the help. I have a small query. If I process the payment from external payment vendor (3rd party site). And the payment vendor sends the status with redirect post, what should be the redirect (callback URL) defined in the payment vendor configuration for my payment process or to which url that the vendor should redirect with post parameters? How to handle that response and display the final response to customer?
I like the challenge you pose. I made something like this ua-cam.com/video/HUR6sl7M0is/v-deo.html to handle callback info. Let me know if you can make it work for you. Incorporate it in your payment gateway.
Thank God, I found your tutorials. They are just awesome. Makes me wanna start learning to code WordPress plugins. Do you also develop these on client websites?
Yes I am struggling for 10 days trying to make it work My problem is that the payment method and its configuration shows in the backend but never shows on the checkout page as a payment method - I tried all the code files and versions from the OP github repo - I tried changing the currency (making it UGX on the options / tried also making it USD in the code) - When debugging , I see few errors of type (method or function deprecated ..) and I have tried to solve those error until they disappear but still not working - I am trying to install the plugin on older versions of PHP , and still can't figure out what might be the problem
Hey Laurence thanks for this resource. My labels, titles and descriptions seem not to appear and yet I kind of followed everything step by step. What could be the cause?
This hasn’t since changed in Woocommerce to-date. I use this as a starting point for any new gateway I want to develop. Can you share the challenge you experienced?
This video 1 out of 7 explains the basics of the gateway system without getting into the coding. Here is the full playlist ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html Other videos: 2. Start a real life payment gateway coding in the second video in the series. ua-cam.com/video/blLqSVpT7Sk/v-deo.html 3. Adding Custom form fields to WooCommerce payment gateway Description - ua-cam.com/video/q3y0HJEdMfU/v-deo.html 4. Add meta to Admin & Invoices from Custom form fields in WooCommerce payment gateway Description - ua-cam.com/video/6JY0HiycKyU/v-deo.html 5. Sandbox Test Payments API for WooCommerce payment gateway - ua-cam.com/video/UZZzn7euTgM/v-deo.html 6. Integrating Mobile Payments API into Payment Gateway from Sandbox - ua-cam.com/video/vxjl2VXYS1Y/v-deo.html
Hi, thanks for nice tutorial. I've noticed that reduce_order_stock() is deprecated. We need to replace $order->reduce_order_stock(); with: wc_reduce_stock_levels( $order_id );
If you watch the whole series ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html You will learn to make your payment gateway for whatever API or country.
I have shared all the plugins/extensions while Setting up Visual Studio code (VS Code) for WordPress Development here ua-cam.com/video/pMPjrCtbsFM/v-deo.html I hope this helps.
@@TechiePress Yes..it definitely will..Currently working on one and stuck, so started surfing the net and found this tutorial..! It is really lovely,Good one! cant wait for the next one.
Hi... How about customising payment gateway's tokenization? Payfast in South Africa has functionality of tokenization and recurring payments but we have to customize it ourselves. . Can you help with that???
I have looked at the documentation and seems that subscriptions for pay fast are already made. You just need to have Woocommerce subscriptions plugin installed to have this set up running. You can speak to the chat to see how they hook you up.
@@TechiePress Hi Laurence, thanks for such a helpful video, Is there any solution yet for " error at the end of the video? waiting for your reply and solution :)
Hello Sir, the video is very informative even though I'm clueless when it comes to coding, Im based in South Africa but I sell globally using USD as my store currency but everytime I activate a gateway plugin I'm forced to switch my currency to ZAR, I had a developer by pass it once using coding, the currency remained USD but switched to ZAR through checkout, can you please assist?
It is not so much of a technical issue. It is a legal one. Countries require by law that online shops sell in their local currencies. If you want to sell in dollars, you will have to provide documentation to the appropriate authorities in South Africa (through the fintech or payment gateway you are using e.g. Stripe or Paystack) before you can be allowed to sell in dollars on your website. The tech companies are only following the laws of the countries.
Hey @Techiepress, I kind of followed every step but my payment gateway is not showing under the woocommerce payment gateways and when I reload nothing is happening so I'd say the code is OK. What could be the problem?
@TechiePress Hi Laurence, thanks for such a helpful video, Is there any solution yet for " error at the end of the video? i tried but couldn't reach any solution, please answer me,i need it to work.....
@@TechiePress what of forminator You know the payment gateway we have in Nigeria is paystack but most plugins support stripe and PayPal only Pls whenever you aren't busy a new payment plug-in will be helpful
Check out his out. Plugins Vs Functions.php - Where should I put my WordPress code? Learn how to build a plugin ua-cam.com/video/9LtXEMRNln8/v-deo.html
@@TechiePress i am not familiar with coding but it looks like the new woocommerce block didn't connect the payment option in setting. Is it because the plugin didn't take care of the checkout block hook? I tried to use local payment gateway but it didn't appear on checkout page.
To be honest I haven't looked into the checkout pages blocks. I know the payment gateways still Work normally as before. I will look into it however, thanks for raising this
It depends on how your API expects the data. Try this here. stackoverflow.com/a/45772467/6773883 or stackoverflow.com/questions/53315805/woocommerce-custom-payment-gateway-not-redirecting
@@TechiePress I tried these solutions, they are not solving my problem, I just want to redirect to my own payment gateway that I develop, with the information in the order variable, Do you have any else solution that can solve my problem.
Bonsoir, j'ai suivie les étapes de cette vidéo, mais il n'y a aucun ajout au niveau du mode de paiement et je ne sais vraiment pas d'où vient le problème. pouvez vous svp m'aider?
S'il vous plaît regarder toute la série pour apprendre comment faire cela ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html This video 1 out of 7 explains the basics of the gateway system without getting into the coding. 2. Start a real life payment gateway coding in the second video in the series. ua-cam.com/video/blLqSVpT7Sk/v-deo.html 3. Adding Custom form fields to WooCommerce payment gateway Description - ua-cam.com/video/q3y0HJEdMfU/v-deo.html 4. Add meta to Admin & Invoices from Custom form fields in WooCommerce payment gateway Description - ua-cam.com/video/6JY0HiycKyU/v-deo.html 5. Sandbox Test Payments API for WooCommerce payment gateway - ua-cam.com/video/UZZzn7euTgM/v-deo.html 6. Integrating Mobile Payments API into Payment Gateway from Sandbox - ua-cam.com/video/vxjl2VXYS1Y/v-deo.html
Hi bro thanks, for this type of work you are nice working but i have a question for you my question is i have payment gatway website in other word i bought code frome codecaneyone now i want to build woocommerce addon for my site how can i do that? i hope you will help. me by theway im not well english speaker
Hi... I need assistance with payfast plug-in.. To enable it yo perform ad hoc recurring payment and to support upsells... Currectly when customer purchase on my site tha hey get directed to payfast page for payment n then redirected to my thank you page.. But it does not redirect to OTO pages that ive set up.. Can u assist
@@TechiePress i spoke to them and they gave me long run arounds so much i ended up getting a developer on fiverr and he also doesn't seem to understand what i need... Can i contact u via email perhaps n chat?
hello sir, i follow your video and design payment gateway plugin for WebMoney. title, description, WMZ address, API address. now I want when user click on check out, then new page open that auto-connect with user WebMoney account, also auto collect product price that user pay via WebMoney. like banggood.com how is it possible? if you have facebook id or email so please tell me i share you code. thanks.
Thanks for watching. Please watch this series to learn most of the things you are asking for. ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html Let me know when you are done. If this is not something you have time for, you could consider hiring me to do. Cheers
Guys the problem in the end of this video is just because of a simple typo, the function process_payments has an extra 's' in the name, the real one should be like 'process_payment'. Just change the name of this function and it should work :)
btw, this video is amazing, I just needed to add an extra payment method that doesnt even need to make api integrations so this simple code base is exactly what I was looking for and worked pretty good.
Thank you for the feedback and making the correction. I will pin your answer to the challenge. I am glad this was helpful.
Thank you for the comment. This took me more than 5 hours to figure out
Thank you, that was the cherry on top :)
upvote this! few hours wasted
Watching this in 2023. I must say you did a great job. Thanks for the video
You're doing a great job here ... that's surely uncommon here in UG. Great resources and time put into this. Thanks
The tutorial is a mind opener and I like the way you show us the exact steps to build and get an own payment gateway on the go. I would recommend. Thanks for the woo series.
I am enjoying the videos myself. Reminding me of the stuff I forget or learning new things as I find challenges.
I thought it was complicated until now
Bro I fixed a plugin today just for your video..... you're the best bro
There is a typo at the end of the video with the function process_payments. It has an extra 's' in the name, it should be 'process_payment'. If you change the name of this function it should work.
This video explains the basics of the gateway system without getting into the coding. Start a real life project coding by watching the second video in the series.ua-cam.com/video/blLqSVpT7Sk/v-deo.html
hi sir i want your contac pls
God bless you for pouring this knowledge to us. I wish you many successes ahead.
Great video. Can you help with integrating Airtel API into woocommerce?
This is great! May I know what snippets you used here?
Appreciate your help & great coding skills.
If you don't mind me asking, I want to integrate a local payment method in Saudi Arabia called "Mada".
To which line in your code should I add the Mada API to integrate it directly to my Woocommerce store website ?
I am realy happy that i found your videos about Wordpress. Thank you so much for such an amazing video that you made it very simple to add a new payment gateway to Woocommerce. I realy appreciate this.
I am glad you found real value. Thanks for watching. If you have any questions, let me know if they are not answered in the series.
Nice tutorial i want to be able to open an on "Place Order" button click then take a user to a 3rd party payment gateway then return the result of the transaction to WP. Any idea how to do that ?
Thanks for watching. The PayPal inbuilt plugin has a similar implementation so you can check it out do something for yourself.
Hey there! Good Video - helped me out, BUT it seems that the instructions added in backend doesnt show up in e-mail and thank you-page. Any advise or help here?
Thanks for the kind comments. Did you watch the whole series? This first video was introductory but I go in depth for each of the functions. Let me know if you don’t find it and I will make a video exclusively for this.
Change hook in string 37. Guess I find litle mistake in hook, try 'woocommerce_thankyou_'
great video, but I have a problem. I am unable to see the payment method at the checkout page. I have used several plugins by different authors but I never see it at the checkout page apart from those provided already by woocommerce like bank to bank transfer
One of the most helpful tutorial on wordpress Thank you very much Sir
You're doing really a great job. so nice of you.
I am glad it is helpful
Bro thanks for this I really appreciate what you doing love from Somalia
Hello ,
Thanks for the tutorial
Which PHP & Wordpress version you were using in this tutorial ?
Can you please help with an issue that I am struggling with for 10 days trying to make it work
My problem is that the payment method and its configurations shows in the backend but never shows on the checkout page as a payment method
- I tried all the code files and versions from your github repo
- I tried changing the currency (making it UGX on the options / tried also making it USD in the code)
- When debugging , I see few errors of type (method or function deprecated ..) and I have tried to solve those error (by defining those methods) until they disappear but still not working
Any help from you will be appreciated
edit : it worked on PHP 7.3 & Wordpress 5.3.2 , but not on new releases.
Great Tutorial man. it's really helpful.
Thanks, thanks... Awesome teaching.
Hi sir this is really hopeful video for me to understand from scratch thank you , thank you very much sir.
How would you go about adding a shortcode for a Form to the Cash on Delivery Gateway? I can't seem to alter the Description to accept Shortcodes
Thanks for the question. Unfortunately, the COD gateway does not have a hook to that. Do you mind sharing the purpose for the form so we can see where to beat fit it and use the available WC hooks?
Thanks for the demo code, what i wish is to add an upload button before the confirming the payment, my intended noob payment is for the customer to scan QR and then later upload their scanned image as payment receipt back to the order before they can click confirm payment, if they do not upload "any image' , they will not be able to click confirm. In what point i can add this upload file control , will u be able to give some advice ?
Hello!! Thanks for your videos, they are excellent!
Can you tell me how can i solve "Error processing checkout. Please try again." ?
Please check the pinned comment. There is a typo
@@TechiePress Thank you very much men! you are great
10q for the video it is really helpful, I am trying to pass the total amount in int the checkout page and pass it to the payment gateway using Ajax. I'm having trouble figuring out how to get the value ( total payment amount of the order ) and pass it in a JSON format to the API. so how can I access the value in the Total field. it would really be helpful thanks.
Have you watched the whole video series? This video ua-cam.com/video/vxjl2VXYS1Y/v-deo.html helps in getting all the details fixed into the API. Quick note, you do not need AJAX to send JSON. WP sends all its data via JSON
That is realy amazing!!!
but the question is to create your own payment getway that integrate bank ussd code to your ecommerce web.
Please upload the video if you can
That’s for the kind words. Bank, mobile, they all work the same way. You just need to get the fields and information required to send to the API.
Is it possible to make this work with Payment Cloud?
THANK YOU VERY MUCH! one question: is it useful for all countries?
Hi. Thanks for the vote of confidence. You can make this work for your native country if you have a payment gateway you need to work for you. Just tweek it
@@TechiePress yes in my situation the bank who i want to work have no plugins for woocommerce, my site is wordpress site with WooCommerce. Now i must create payment gateway for my bank , like in this video yes?
Yes. I made a whole series to show you more. Check it out ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html
@@TechiePress Thank you! You ' re great man👍
Do you have a tutorial for Shopify similar to this?
Unfortunately, no. I don’t have any
@@TechiePress thanks for the timely response as always. Can I apply this PHP code to possibly create the Shopify app?
Unfortunately, It will not work because they are different platform builds.
@@TechiePress another question, would it be possible to use elements of this (minus the woocommerce) to create one for opencart? Seeing that opencart is also PHP.
@@foresitetechnology3547 unfortunately they are different technologies.
This is a great example.
thank you brother, this helped me a lot , great job
Very helpful turorial. Thank you so much
Glad it was helpful!
this video its very good, thanks man
Checkout the whole series. They might be helpful to give more insight. ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html
Thank you for this great video. There does not seem to be anything out there other than using the available plugins and stripe costs are an arm and a leg.
Now I have a question, I am using a payment gateway called SecuPay (Germany), I can't figure how I will be able to integrate their gateway to a plugin. Thanks again!
I hope you get your answer by the end of the video series.
@@TechiePress Your instructions and the gateway works, also after the typo correction of the 'payment/payments' as someone pointed out. The process goes through, not sure how the person pays, perhaps I am missing something. I also still do not understand at what point you add the url of a PCI compliant gateway (such as SecuPay or any other) to your plugin and safely link it back again to your website.
I have set up PayPal payments on websites without CMS but with WordPress it is still mystery to me.
Oh, I see you suggested further below to go through the series. I will do so and most possibly comment how it turned out for me. Thank you!
Good one! But lack of some changes to woocommerce order while there is another vendor on the same store. Imagine that 'another vendor' has his products and sales them on your store. That 'another vendor' has his billing account in his option page and when the order is going on the product of that 'another vendor' - the billing and payment comes on the 'another vendors' account. Ofc there could be some options for comissions to store :D.
Can you handle that? You could even sell that kind of plugin :)
Do you use something like Dokan or WCFM? It allows multiple vendors with Woocommerce
@@TechiePress I Just dont know which to use, and they all are terrible, and they use payment to store and then store vendor sends comission to vendor. I wanted direct payment to vendor
You can get a third party payment processor who requires a unique identifier for each vendor then make payments to each on a purchase.
@@TechiePress Dokan is Indian words it meaning is Kirana Shop where you can sell all brand every thing!!! :)
amazing bro, you desirve 100K subcribers ❤
Sending Love Bro, You are Great
Hi bro. Thanks a lot for the video. It was quite useful. I wanted to know how I can use return url from the payment gateway to the plugin to finalise the payment.
Hi. Thanks for watching. The Woocommerce plugin has good examples of this in the gateways directory. Take a look at the PayPal standard option for example.
@@TechiePress thanks. Let me look into that
good job. Well done, but I have one question, how can I withdraw my profits?
That depends on the payments processing company whose API you use.
Can I message you privately on your email or Facebook account?
Facebook is fine. Email is Web@mediauganda.com
HI!! great video. I just have one question. I have the payment gateway url, how I can add the link so when I hit "place order" send the transaction for the validation?
Do your customers have to visit the link and go to another page to make payments?
@@TechiePress no, in this case once the hit the "place order" option going to sent the the transaction directly to the payment gateway.
I see. It’s a whole series ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html but you are looking for video no. 5 ua-cam.com/video/UZZzn7euTgM/v-deo.html It shows you how to.
@@TechiePress Hi!! I create the plugin and I try to send the transaction but the payment gateway are not receiving the transaction and on my website show the method payment on checkout but on my client website not. can I send you the what I did and tell me where is the problem?
Send me a link on the email in bio
hello. I have tried adding the gateway but its not showing on the checkout page any tips for me?
I have tried to creat a custom payment gateway .. I have installed the plugin now i can access the admin panel
Hi, thanks for the precise video. Allow me go off topic a bit... I need to integrate Flutterwave api into woocommerce, any leads?
Thanks for watching. Flutterwave already has a Woocommerce plugin. Just download it from their website and integrate the payments with your approved account. developer.flutterwave.com/docs/plugins
Hi Thanks for the help.
I have a small query.
If I process the payment from external payment vendor (3rd party site). And the payment vendor sends the status with redirect post, what should be the redirect (callback URL) defined in the payment vendor configuration for my payment process or to which url that the vendor should redirect with post parameters?
How to handle that response and display the final response to customer?
I like the challenge you pose. I made something like this ua-cam.com/video/HUR6sl7M0is/v-deo.html to handle callback info. Let me know if you can make it work for you. Incorporate it in your payment gateway.
Thank God, I found your tutorials. They are just awesome. Makes me wanna start learning to code WordPress plugins. Do you also develop these on client websites?
That’s something you should pick up & why this channel exists. Yes, I do freelance work.
@@TechiePress sent you an Email yesterday. Looking forward to your reply
Does this compatible to the latest wp version 6.4.2? is there anyone get this error, i am challenging with it.
Yes
I am struggling for 10 days trying to make it work
My problem is that the payment method and its configuration shows in the backend but never shows on the checkout page as a payment method
- I tried all the code files and versions from the OP github repo
- I tried changing the currency (making it UGX on the options / tried also making it USD in the code)
- When debugging , I see few errors of type (method or function deprecated ..) and I have tried to solve those error until they disappear but still not working
- I am trying to install the plugin on older versions of PHP , and still can't figure out what might be the problem
@@pakinem3991 Same, did you get it working?
TechiePress thank you for this effort. Keep it up
Let me know what your think about the whole series.
Hey Laurence thanks for this resource. My labels, titles and descriptions seem not to appear and yet I kind of followed everything step by step. What could be the cause?
Do you have a GitHub repo or gist of this? I could make comments there
@@TechiePress Let me put it up and notify you
Hey thx for the series. Could it be that this tutorial is outdated?
This hasn’t since changed in Woocommerce to-date. I use this as a starting point for any new gateway I want to develop. Can you share the challenge you experienced?
This video 1 out of 7 explains the basics of the gateway system without getting into the coding. Here is the full playlist ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html
Other videos:
2. Start a real life payment gateway coding in the second video in the series. ua-cam.com/video/blLqSVpT7Sk/v-deo.html
3. Adding Custom form fields to WooCommerce payment gateway Description - ua-cam.com/video/q3y0HJEdMfU/v-deo.html
4. Add meta to Admin & Invoices from Custom form fields in WooCommerce payment gateway Description - ua-cam.com/video/6JY0HiycKyU/v-deo.html
5. Sandbox Test Payments API for WooCommerce payment gateway - ua-cam.com/video/UZZzn7euTgM/v-deo.html
6. Integrating Mobile Payments API into Payment Gateway from Sandbox - ua-cam.com/video/vxjl2VXYS1Y/v-deo.html
Hi, thanks for nice tutorial.
I've noticed that reduce_order_stock() is deprecated.
We need to replace
$order->reduce_order_stock();
with:
wc_reduce_stock_levels( $order_id );
This tutorial is a bit outdated and WooCommerce has since released 5.0. Payment gateways will soon be done in React or native JavaScript
Amazing video, thanks
can I integrate cashu payment gateway with this tutorial?
If you follow the tutorial series, you should be able to use any API to integrate any payment gateway
@@TechiePress thanks 😊
A very helpful video for everyone. How can i integrate the Korean payment gateway in WordPress ? Like : Naver pay, LG, TossPay, Kakao Pay etc
If you watch the whole series ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html You will learn to make your payment gateway for whatever API or country.
What is the vs-code extension you are using ?
I have shared all the plugins/extensions while Setting up Visual Studio code (VS Code) for WordPress Development here
ua-cam.com/video/pMPjrCtbsFM/v-deo.html
I hope this helps.
what version of woocommerce is this?
How to extract plugin file after that for install it in WordPress?
Hi what about integrating with another codes API(a payment platform too)?
Hey Wanda, I considering a follow up with an external API that offers payments in the near future. I hope this will help throw more light on this.
@@TechiePress Yes..it definitely will..Currently working on one and stuck, so started surfing the net and found this tutorial..! It is really lovely,Good one! cant wait for the next one.
It should be up in the next few days. I had some videos on external APIs coming up. But I am working on that now.
@@TechiePress Alright. Can't wait
waiting for this too @TechiePress . Thank you :)
hy this video is very good helping me to do my assignment can you tell me how can i integrate my payment api in wordpress
Hey. Glad to hear that. Watch the next few videos in that series. You will surely learn.
I have a question how do you view your Plugin files and edit them?
I usually develop locally and use an editor like visual studio code but some servers have file managers with a good editor.
Hi... How about customising payment gateway's tokenization?
Payfast in South Africa has functionality of tokenization and recurring payments but we have to customize it ourselves. .
Can you help with that???
I have looked at the documentation and seems that subscriptions for pay fast are already made. You just need to have Woocommerce subscriptions plugin installed to have this set up running. You can speak to the chat to see how they hook you up.
please how did you solve "Error processing checkout. Please try again." error at the end of the video?
Hello Esther, I am going to make a follow up video of this. I will include any code refactoring. Please check again in a few days.
@@TechiePress Hi Laurence, thanks for such a helpful video, Is there any solution yet for " error at the end of the video? waiting for your reply and solution :)
Super helpful tutorial! Thank you
Well done
Hi
can i custom it to all received payment to be transferred to my bank account direct
Yes you can. Watch the whole series and make that decision. You can read the API definitions for the bank then make the payment gateway.
@@TechiePress can I hire you to make it for me
Yes you can. Reach me via web@mediauganda.com
Hello Sir, the video is very informative even though I'm clueless when it comes to coding, Im based in South Africa but I sell globally using USD as my store currency but everytime I activate a gateway plugin I'm forced to switch my currency to ZAR, I had a developer by pass it once using coding, the currency remained USD but switched to ZAR through checkout, can you please assist?
It is not so much of a technical issue. It is a legal one. Countries require by law that online shops sell in their local currencies. If you want to sell in dollars, you will have to provide documentation to the appropriate authorities in South Africa (through the fintech or payment gateway you are using e.g. Stripe or Paystack) before you can be allowed to sell in dollars on your website. The tech companies are only following the laws of the countries.
Hey @Techiepress, I kind of followed every step but my payment gateway is not showing under the woocommerce payment gateways and when I reload nothing is happening so I'd say the code is OK.
What could be the problem?
Hey, watch video 2 in this series.
Am actually facing the same problem
Check this out the next video in that play list. ua-cam.com/video/blLqSVpT7Sk/v-deo.html
ua-cam.com/video/blLqSVpT7Sk/v-deo.html
@@TechiePress OK thanks, it finally worked...
excellent
@TechiePress Hi Laurence, thanks for such a helpful video, Is there any solution yet for " error at the end of the video? i tried but couldn't reach any solution, please answer me,i need it to work.....
This Thursday morning I will upload the solution. I am currently changing my office.
@@TechiePress Thank you so much,i really appreciate your work and kind responses....:)
Hi, could you develop this plugin by adding some customisations for me? I will pay for it. Waiting for your reply.
Kind regards
Can this be used to integrate MPESA
Yes it can. Please follow the whole series to learn the process
Pls can you create paystack integration for wp cost estimator
I haven’t used Wp cost estimator before. But it should be possible if it has hooks embedded in it to facilitate more payments options
@@TechiePress what of forminator
You know the payment gateway we have in Nigeria is paystack but most plugins support stripe and PayPal only
Pls whenever you aren't busy a new payment plug-in will be helpful
very thanks master
You are most welcome
Like I'd really appreciate it if you can help tell me how I am going to input all those codes I don't really know where to start please
Check out his out. Plugins Vs Functions.php - Where should I put my WordPress code? Learn how to build a plugin
ua-cam.com/video/9LtXEMRNln8/v-deo.html
Amazing! Thank you so much. You just got a new sub!!
I have a custom API and need to create a plugin that will direct it to the give API payment... how can i do it
Watch the whole series. You will learn everything you need. ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html
@@TechiePress hi brother... I am not a code guy I only make website with templates therefore I don't understand most things... I really need help
Please reach me via email web at mediauganda dot com
hello guys i am new to this how is he connecting visual studio code to the Wordpress ?
This is how I do it. ua-cam.com/play/PLNqG1qGUllk0wJsIzxXGA0zNGEZ5H8Ko1.html I make a plugin which I open in visual studio code.
Can this be implement with woocommerce block in Gutenberg
Payments are not content so they are not implemented as blocks. You could correct me if that's the new case.
@@TechiePress i am not familiar with coding but it looks like the new woocommerce block didn't connect the payment option in setting. Is it because the plugin didn't take care of the checkout block hook? I tried to use local payment gateway but it didn't appear on checkout page.
To be honest I haven't looked into the checkout pages blocks. I know the payment gateways still Work normally as before. I will look into it however, thanks for raising this
@@TechiePress great. Thanks man. Keep up the good content buddy.
Thanks a lot! :)
Did you enjoy the whole series? Lots of good stuff to see
@@TechiePress not yet, but I will go through. I am building QR code payment method right now, maybe I will try to make a video out of it.
cib api can work?
It’s possible. Read their api docs and intergrate it. This was a lesson in the basics
can i add my Qr code image in my woocommerce payment plugins
Yes, you can do anything. Just make sure the workflow is as you intend it to be before the order completes.
@@TechiePress bro can you add one qr code image adding option in this plugin
Mukesh have you seen the whole playlist? In this video ua-cam.com/video/q3y0HJEdMfU/v-deo.html I share how to add more fields and info to plugin.
I want to redirect to my own url(my payment gateway), with passing the data in the order variable, how can I do that? please provide some help.
help me @TechiePress, I'm looking for your reply.
It depends on how your API expects the data. Try this here. stackoverflow.com/a/45772467/6773883 or stackoverflow.com/questions/53315805/woocommerce-custom-payment-gateway-not-redirecting
@@TechiePress I tried these solutions, they are not solving my problem, I just want to redirect to my own payment gateway that I develop, with the information in the order variable, Do you have any else solution that can solve my problem.
You can try using an like WordPress.org/plugins/woo-tranzilla-gateway
Bonsoir,
j'ai suivie les étapes de cette vidéo, mais il n'y a aucun ajout au niveau du mode de paiement et je ne sais vraiment pas d'où vient le problème.
pouvez vous svp m'aider?
S'il vous plaît regarder toute la série pour apprendre comment faire cela
ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html
This video 1 out of 7 explains the basics of the gateway system without getting into the coding.
2. Start a real life payment gateway coding in the second video in the series. ua-cam.com/video/blLqSVpT7Sk/v-deo.html
3. Adding Custom form fields to WooCommerce payment gateway Description - ua-cam.com/video/q3y0HJEdMfU/v-deo.html
4. Add meta to Admin & Invoices from Custom form fields in WooCommerce payment gateway Description - ua-cam.com/video/6JY0HiycKyU/v-deo.html
5. Sandbox Test Payments API for WooCommerce payment gateway - ua-cam.com/video/UZZzn7euTgM/v-deo.html
6. Integrating Mobile Payments API into Payment Gateway from Sandbox - ua-cam.com/video/vxjl2VXYS1Y/v-deo.html
@@TechiePress Merci beaucoup.
Hi bro thanks, for this type of work you are nice working but i have a question for you my question is i have payment gatway website in other word i bought code frome codecaneyone now i want to build woocommerce addon for my site how can i do that? i hope you will help. me by theway im not well english speaker
yeah
Great ! thank you /\
Hi... I need assistance with payfast plug-in.. To enable it yo perform ad hoc recurring payment and to support upsells... Currectly when customer purchase on my site tha hey get directed to payfast page for payment n then redirected to my thank you page.. But it does not redirect to OTO pages that ive set up.. Can u assist
Ow and payfast provides developers manual for API intergration
Thanks for asking. Have you tried the customer support via www.payfast.co.za/contact? They have a dedicated team to this
@@TechiePress i spoke to them and they gave me long run arounds so much i ended up getting a developer on fiverr and he also doesn't seem to understand what i need... Can i contact u via email perhaps n chat?
Sorry about your experience. Please do via web @ mediauganda dot com
Please posts the github li
nks
Links are in the next video of the series. This was an introduction.
What code application is that?
What do you mean?
Visual code, its great for javascript,css, and html try it
It is what I use everyday for office and personal projects.
how can I add credit card payment ?
Why don’t you use something like strip that works with cards already?
@@TechiePress sorry no stripe or paypal please
Well depending on your API, it all works similarly. Just add fields to collect necessary details for sending.
are experience with xenforo
No I don’t have that experience with it. However, you can test it out.
what is your problem?
I need you in a free lancing integration for my API
Let’s talk via web@mediauganda.com
hello sir,
i follow your video and design payment gateway plugin for WebMoney.
title, description, WMZ address, API address.
now I want when user click on check out, then new page open that auto-connect with user WebMoney account, also auto collect product price that user pay via WebMoney. like banggood.com
how is it possible?
if you have facebook id or email so please tell me i share you code.
thanks.
Thanks for watching. Please watch this series to learn most of the things you are asking for. ua-cam.com/play/PLNqG1qGUllk21IES6ZJ2WkX1BcbPQF4-7.html Let me know when you are done. If this is not something you have time for, you could consider hiring me to do. Cheers
bro, do you have telegram or icq?
t.me/omukiguy
@@TechiePress ok
Can you make me one
I would have loved too but you already have one in Somalia. So no need to spend money to do the same thing. sopayapp.com/plugins/#PLUGINS
Code
Hello ! Is there anyway I can contact you please? I would really use some help