Wordpress plugins
WordPress Stripe Checkout

WordPress Stripe Checkout

Version : 1.2.0
Tested up to : 5.7.2
Number of download : 1516
Author : naa986
Average rating : 4 / 5 on 14 votes 14 votes, 4 avg.rating

Screenshots

WordPress Stripe Checkout
WordPress Stripe Checkout
WordPress Stripe Checkout
WordPress Stripe Checkout

Stripe WordPress plugin allows you to accept payments with the Stripe payment gateway. With a simple shortcode, you can quickly start accepting payments on a pre-built, Stripe-hosted form that is SCA-ready and supports 3D Secure 2 authentication. This makes accepting credit card payments easier than ever with very little setup and effort. Stripe Checkout comes with a smart payment page that works seamlessly across devices and is designed to increase your conversion. Benefits of Stripe Checkout Payments Smooth checkout flow that automatically handles SCA (Strong Customer Authentication) requirements for you. Accept credit and debit card payments. Accept recurring subscription payments. Accept Apple Pay payments with no additional setup. Support Dynamic 3D Secure payment authentication. Localized for 14 languages. Automatically send email receipts to your customers. Build conversion-optimized payment forms, hosted on Stripe. Simplified mobile-ready experience for customers. It works on its own. There is no complex setup like a membership/e-commerce plugin. No setup fees, monthly fees or hidden costs. You are charged on a percentage basis for each payment (2.9% + 30 cents for International cards and 1.75% + 30 cents for domestic cards). Seamless transfer to your bank account. Once everything is set up, transfers arrive in your bank account on a 2-day rolling basis. Easily Switch between live and sandbox mode for testing. Real-time fee reporting in your Stripe account. Display a logo of your brand or product on the payment page. Send a purchase confirmation email to your customer after a transaction. Send a sale notification email to a chosen recipient (e.g. the seller) after a transaction. WordPress Stripe Plugin Configuration Once you have activated the plugin, you need to configure some settings related to your Stripe merchant account. It’s located under “WP Stripe Checkout -> Settings -> General”. Test Mode: A checkbox that allows you to run Stripe transactions on your site in test mode using test API keys. Stripe Test Secret Key: Your Stripe secret key to run transactions in test mode Stripe Test Publishable Key: Your Stripe publishable key to run transactions in test mode Stripe Live Secret Key: Your Stripe secret key to run transactions in live mode Stripe Live Publishable Key: Your Stripe publishable key to run transactions in live mode Currency Code: The default currency code that will be used when accepting a payment Return URL: The page URL to which the customer will be redirected after a successful payment Stripe Webhook URL: The page URL to which Stripe will send notification after an event Emails Stripe checkout plugin comes with an “Emails” tab where you will be able to configure some email related settings. Email Sender Options In this section you can choose to customize the default From Name and From Email Address that will be used when sending an email. Purchase Receipt Email When this feature is enabled an email sent to the customer after completion of a successful purchase. Options you can customize here: The subject of the purchase receipt email The content type of the purchase receipt email. The default is “text/plain”. But you can also set it to “text/html” The body of the purchase receipt email. Sale Notification Email When this feature is enabled an email is sent to your chosen recipient after completion of a successful purchase. Options you can customize here: The subject of the sale notification email The content type of the sale notification email. The default is “text/plain”. But you can also set it to “text/html” The body of the sale notification email. You can use various template tags in the body of an email to dynamically change its content. You can find the full list of available template tags in the Stripe payments plugin page. How to use Stripe Checkout Step 1: Enable Checkout in the Dashboard To begin using Checkout, log into the Stripe Dashboard and navigate to the Checkout settings (Settings > Stripe apps > CHECKOUT). From here you can enable the client integration and customize the look and feel of your checkout page. Step 2: Create a Product Navigate to the “Products” section in the Dashboard and create a new product (New > One-time purchase products). When you create a product in the Dashboard, Stripe creates a Price ID for it. You will need to use this Price ID in shortcode to create a button. Step 3: Add a Webhook Endpoint Go to “Developers > Webhooks > Add endpoint” and insert the URL shown in the plugin settings. Select this event – “checkout.session.completed” and click “Add endpoint”. This is where Stripe will send notification after a checkout payment is successful. Step 4: Add a Checkout Shortcode In order to create a Stripe checkout button you can add the following shortcode to a post/page: [wp_stripe_checkout_v3 price="price_UY9NozbEy7T3PUlk"] price – Price ID of the product created in your Stripe account. To create a checkout button for accepting recurring subscription payments, you need to set the “mode” parameter to “subscription” in the shortcode: [wp_stripe_checkout_v3 price="price_UY9NozbEy7T3PUlk" mode="subscription"] The product in question must also be of type “Recurring” in your Stripe account. Shortcode Parameters You can add additional parameters in the shortcode to customize your Stripe checkout button. button_text – The text displayed inside the button (e.g. button_text=”Pay Now”). The default is “Buy Now”. success_url – The URL to which Stripe will redirect upon completion of a successful payment (e.g. success_url=”https://example.com/success”). The default is the Return URL specified in the settings. cancel_url – The URL to which Stripe will redirect after a payment is canceled. (e.g. cancel_url=”https://example.com/payment-canceled”). The default is the home URL for your site. mode – The mode of the checkout (e.g. mode=”subscription”). The default is “payment”. locale – The locale that will be used to localize the display of Checkout (e.g. locale=”en”). The default is “auto” (Stripe detects the locale of the browser). billing_address – Specify whether Checkout should collect the customer’s billing address. (e.g. billing_address=”required”). The default is “” (Checkout will only attempt to collect the billing address when necessary). shipping_address – Specify whether Checkout should collect the customer’s shipping address. (e.g. shipping_address=”required”). shipping_countries – If you only wish to ship to certain countries you can specify their country codes. (e.g. shipping_countries=”‘US'” or shipping_countries=”‘US’,’GB’,’AU'”). For detailed setup instructions please visit the Stripe plugin page. Legacy Stripe Checkout Stripe Checkout Form is a beautiful payment form specifically designed for desktop, tablet, and mobile devices. Your customer never go to an external payment page for making the payments. They stay on your site and enter their credit card in a secure payment form to complete the payment. All payment submissions are made via a secure HTTPS connection. However, in order to fully protect sensitive customer data, you must serve the page containing the Stripe payment form over HTTPS. In short, the address of the page containing the Stripe checkout form must start with “https://” rather than just “http://”. In order to create a Stripe payment button you can add the following shortcode to a post/page: [wp_stripe_checkout item_name="Champion Men's Jersey T-Shirt" description="Short-sleeve t-shirt in athletic fit featuring ribbed crew neckline and logo at chest" amount="59.99" label="Pay Now"] In order to accept donations for a cause you can use the shortcode like the following: [wp_stripe_checkout item_name="Watsi's medical work" description="Donations for Watsi's medical work" amount="1.00" label="Donate to Watsi"] You can add additional parameters in the shortcode to customize your stripe payment button. item_name – The name of the item you are selling. name – The name of your company or website. image – A URL pointing to a image of your brand or product(128x128px recommended). The recommended image types are .gif, .jpg, and .png. locale– Specify auto to display Checkout in the customer’s preferred language, if available (English is used by default). currency – The currency of the item (e.g. currency=”USD”). If not specified it will take the default currency code from the settings. billing-address – Specify whether Checkout form should collect the customer’s billing address (e.g. billing-address=”true”). The default is false. shipping-address – Specify whether Checkout form should collect the customer’s shipping address (e.g. shipping-address=”true”). The default is false. panel-label – The label of the payment button in the Checkout form (e.g. panel-label=”Pay $2.00″). Checkout does not translate custom labels to the customer’s preferred language. zip-code – Specify whether Checkout form should validate the customer’s billing postal code (e.g. zip-code=”true”). The default is false. label – The text that is displayed on the blue payment button (e.g. label=”Buy Now”). Default is “Pay with Card”. Checkout does not translate this label at the moment. allow-remember-me – Specify whether to exclude the option to “Remember Me” for future purchases (e.g. allow-remember-me=”false”). The default is true. bitcoin – Specify whether Checkout form should accept Bitcoin (e.g. bitcoin=”true”). The default is false. success_url – Specify whether Checkout form should redirect the customer to a different url upon completion of a successful payment (e.g. success_url=”https://example.com/success”). The default is the Return URL specified in the settings. For detailed setup instructions please visit the Stripe plugin page.

Download now