I need a plugin for wordpress that first takes a new user through paypal and then once the user pays, allows them to register for the website. I've tried pie-register but it first has the registration and then the payment and I don't want that.
I can build the plugin but I'd rather not reinvent the wheel if there's already something out there like this.
Thank you!
Related
So I was working with this woocommerce theme (Sober) and wanted to add custom OTP verification after the user registers to my website.
All I want is that when user fill up the registration form and submit, an OTP is send to his/her phone(Don't wana use third party plugin). Once the user verifies the OTP than only the account be created.
I have added few custom field to my woocommerce form, but don't know how to redirect to otp verification without the form being saved unless otp is verified.
I am pretty new to WordPress and WooCommerce.
Personally I think when you are using any framework try to integrate certain third party tools by yourself instead of using plugins. There are pros and cons to this.
Its a pretty old question but thought this may be help for others. You can use a free service from Facebook called AccountKit for integration of OTP in multiple platforms.
https://developers.facebook.com/docs/accountkit
There are other paid and good options as well, but FBs AccountKit is really easy to integrate at-least till the time FB lifts support from AccountKit.
Hope this helps.
There's this wordpress theme I'm working on. I have a user role titled "professionals". I want users assigned this role to be able to publish posts if only they have paid or subscribed. I will like to integrate PayPal or any good payment processor to handle payments. How can I achieve this?
I will appreciate if you can recommend link(s) or plugin(s) that could help achieve this.
Woocommerce is a very popular plugin for payment processing and has a subscription service style payment too. You could integrate this into your site and then use a simple conditional statement to see if they are a subscriber and if not send them to the signup page.
I am currently developing a WordPress plugin that allows users to accept paid guest posts. The scenario goes like this: someone visits the website of the plugin user, creates a guest post which is saved as pending and finally makes a one-time payment via paypal. Once the payment has cleared the post is published on the website.
Basically I need a solution where the website owner can specify just his or her email or merchant ID in the plugin options panel to start accepting payments.
The problem is I'm a little lost as to which paypal api to use and how to get started. There is a lot of information on the paypal website and I'm feeling a bit overwhelmed. Could someone please point me in the right direction?
Thanks
I would recommend using the Express Checkout API for something like that. Specifically, you'll be using SetExpressCheckout, GetExpressCheckoutDetails, and DoExpressCheckoutPayment as explained in that first link.
My PHP class library for PayPal will make those API calls very simple for you, and you could even take a look at my PayPal for WooCommerce plugin to get an idea of how to use the library within a plugin if you need to.
My question may seem to be very basic and view dependent but i wish to know every aspect of it.
I have created a mobile app where the users need to register themselves in order to use the app, but my client wishes to have the admin panel in the form of a website, where the user can register themselves by paying a specific amount through paypal and then they can use the mobile app version.
I have completed the main page and have created the paypal button on the user page, but for the admin page i wish to show a list of all users who have successfully paid for the product.
Is it possible to do so, can i keep a track of user details and their payments on the website??? if yes then can anyone guide me with it, would appreciate some help
use Paypal IPN to save the paypal transaction information to your database.
Use a database. Save each payment record after payment maybe.
I'm trying to implement a plugin in Moodle where new users are registered using Paypal.
And the registration for the new users will require paypal payment to complete registration.
If anybody can help me with any example, code, plugin, or any link, I'll be grateful.
PayPal enrollment is included as part of Moodle's core code, so you just need to enable and then configure it. Documentation is here. This covers enrollment in a specific course, rather than new user signup as typically people want to charge different amounts for different courses, rather than a flat rate for access to everything.
There is no existing PayPal authentication plugin to make it so that a user must pay to register on the site, but if you want to make one the developer docs are here.