WordPress maintenance or security needs? Reach out!
TLDWP

Plugin: wordpress-simple-paypal-shopping-cart (Used by 3,868 domains)

Simple Shopping Cart

The Simple Shopping Cart plugin enables you to effortlessly add ‘Add to Cart’ buttons for your products or services directly on your website. This lightweight plugin transforms your WordPress site into a fully functional e-commerce platform, allowing you to sell products and services with ease.

With this plugin, your customers have the convenience of paying for their selected items using popular payment gateways such as PayPal and/or Stripe.

You can easily display the shopping cart on any post, page, or sidebar. The cart provides users with a clear view of their selected items, allowing them to adjust quantities or remove items effortlessly.

The plugin offers the newest/latest PayPal Commerce Platform (PPCP) checkout option. You can enable it in the settings menu of the plugin.

Checkout Process Demonstration

It offers a simple and seamless checkout process for your customers. To see a demonstration of how the checkout process works, please refer to the following video:

Easily Create Products

You will be able to create products by using shortcodes dynamically.

If you have a responsive theme, the shopping cart’s output will adapt seamlessly to ensure a mobile-friendly shopping experience.

Furthermore, this plugin provides a simple solution for selling digital products. To see a demonstration of how you can effectively sell your digital media files using the simple cart plugin, please refer to the following video:

Engineered for a Lightweight Solution

Designed as a lightweight solution with minimal lines of code and a streamlined set of options, this plugin ensures optimal site performance. Moreover, it is designed to be a low maintenance solution, minimizing the likelihood of frequent site disruptions caused by upgrades. With this plugin, you can enjoy a stable and hassle-free shopping cart functionality while maintaining the overall stability of your website.

Simple Shopping Cart Plugin, interfaces with the PayPal sandbox and Stripe testmode to allow for testing.

Documentation

For documentation, video tutorials, screenshots, support, and updates, please visit:

Simple Shopping Cart Documentation
or
Simple Shopping Cart Details Page

Features

  • Easily create “add to cart” button with options if needed (price, shipping, options variations). The cart’s shortcode can be displayed on posts or pages.
  • Use a function to add dynamic “add to cart” button directly in your theme.
  • Minimal number of configuration items to keep the plugin lightweight.
  • Sell any kind of tangible products from your site.
  • Ability to sell services from your your site.
  • Sell any type of media file that you upload to your WordPress site. For example: you can sell ebooks (PDF), music files (MP3), audio files, videos, photos, images etc.
  • Your customers will automatically get an email with the media file that they paid for.
  • Show a nicely formatted product display box on the fly using a simple shortcode.
  • Option to enable terms and conditions for your customers to agree to before they checkout.
  • Uses the newest/latest PayPal checkout option.
  • Option to use the PayPal Commerce Platform Checkout option. You can enable it from the settings menu of the plugin.
  • Option to use the smart payment buttons of PayPal. Allows the customers to checkout in a popup window (using a credit card, paypal or paypal credit).
  • Your customers will be able to use the PayPal’ Pay in 4 payment option (Buy Now Pay Later).
  • You can use PayPal sandbox to do testing if needed (before you go live).
  • Ability to offer the Stripe checkout option. Your customers can conveniently make credit card payments through the secure Stripe payment gateway.
  • You can use Stripe testmode to do testing if needed (before going live).
  • The Stripe checkout will display payment method options based on what you, as the merchant, have enabled in your Stripe account.
  • You can offer a manual/offline payment option using the Manual Checkout feature.
  • Ability to display the order summary on the ‘Thank You’ page. Refer to this documentation for more details.
  • The orders menu will show you all the orders that you have received from your site.
  • Ability to configure an email that will get sent to your buyers after they purchase your product.
  • Ability to configure a sale notification email that gets sent to the site admin when a customer purchase your item(s).
  • Ability to configure discount coupons. Offer special discounts on your store/shop.
  • You can create coupons and give to your customers. When they use coupons during the checkout they will receive a discount.
  • Create discount coupons with an expiry date. The coupon code automatically expires after the date you set.
  • Compatible with WordPress Multi-site Installation.
  • Ability to specify SKU (item number) for each of your products in the shortcode.
  • Ability to customize the add to cart button image and use a custom image for your purchase buttons.
  • Ability to customize the add to cart button text via shortcode parameter on a per product basis.
  • Track coupons with the order to see which customer used which coupon code.
  • Ability to add a compact shopping cart to your site using a shortcode.
  • Ability to show shopping cart with product image thumbnails.
  • Ability to use a custom checkout page style.
  • Ability to configure region based shipping additions.
  • Ability to use blocks to add the ‘add to cart’ button and the ‘shopping cart’ to your posts/pages/sidebar.
  • Option to enable AJAX add to cart buttons for a smoother user experience.
  • Option to hide the quantity field in the shopping cart. This can be useful for a site selling only digital products where the quantity is always 1.
  • Works nicely with responsive WordPress themes.
  • Can be translated into any language.
  • and more…

Shopping Cart Setup Video Tutorials

There is a series of video tutorials to show you how to set up the shopping cart plugin on your site.

Check the video tutorials here.

Language Translations

The following language translations are already available:

  • English
  • German
  • Spanish
  • French
  • Breton
  • Italian
  • Japanese
  • Polish
  • Czech
  • Hebrew
  • Swedish
  • Norwegian
  • Danish
  • Turkish
  • Dutch
  • Brazilian Portuguese

You can translate the plugin using this documentation.

Developers

  • If you are a developer and you need some extra hooks or filters for this plugin please let us know.
  • Github repository

Usage

1) To add an ‘Add to Cart’ button for a product, simply add the following shortcode to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-PRICE with the actual name and price.

[wp_cart_button name="PRODUCT-NAME" price="PRODUCT-PRICE"]

2) To add the shopping cart to a post or page (eg. checkout page) add the following shortcode to a post or page or use the sidebar widget to add the shopping cart to the sidebar. The shopping cart will only be visible in a post or page when a customer adds a product.

[show_wp_shopping_cart]

3) Alternatively, you have the option to utilize the Gutenberg editor blocks provided by this plugin to conveniently insert the add to cart button and shopping cart in desired locations within your content.

Read the documentation for using the blocks

4) To insert the ‘Add to Cart’ button from a template or PHP file, you can utilize the following PHP function:

Replace PRODUCT-NAME and PRODUCT-PRICE with the actual name and price.

Using Product Display Box

Here is an exmaple shortcode that shows you how to use a product display box.

[wp_cart_display_product name="My Awesome Product" price="25.00" thumbnail="http://www.example.com/images/product-image.jpg" description="This is a short description of the product"]

Simply replace the values with your product specific data

Using a compact shopping cart

Add the following shortcode where you want to show the compact shopping cart:

[wp_compact_cart]

Using Shipping

To apply a shipping cost to your product, use the ‘shipping’ parameter. Below is an example of how to include it in a shortcode:

[wp_cart_button name="Test Product" price="19.95" shipping="4.99"]

Visit the shipping setup documentation page for more details.

Using Variation Control (Product Variations)

To enable variation control, use the variation parameter. Below is an example of how to include it in a shortcode:

[wp_cart_button name="Test Product" price="25.95" var1="VARIATION-NAME|VARIATION1|VARIATION2|VARIATION3"]

Example shortcode usage:

[wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large"]

To add multiple variations to a product (such as a second or third variation), use the following format:

[wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large" var2="Color|red|green|blue"]

To add variations with price modifiers to a product (so the selected variation can update the price), use the following format:

[wp_cart_button name="Test Product" price="15.00" var1="Size|small|medium::5|large::10" var2="Color|red|green::2|blue::3" var3="Sleeve|short|full::5"]
DomainExposuresHeadersLast Checked
s*u*h*a*c*s*o*s.net (WP 6.9.4) F Jun 30, 2026
c*r*d*g*.org (WP 7.0) F Jun 30, 2026
p*m*l*c*r*s*i*n*i*i*t*i*s.com F Jun 30, 2026
p*m*l*b*u*i*h*t*g*a*h*.com (WP 6.9.4) F Jun 30, 2026
p*m*c*e*e*t.com F Jun 30, 2026
s*n*i*b*m*r*t*a.com (WP 7.0) D Jun 30, 2026
m*c*r*f*.com (WP 6.5.8) F Jun 30, 2026
m*c*f*t.com F Jun 30, 2026
i*o*o.com F Jun 30, 2026
c*t*l*u.com (WP 7.0) F Jun 30, 2026
p*l*u*e*i*i*a*p*e*s.com F Jun 30, 2026
u*h*l*g*n*.com (WP 6.9.4) F Jun 30, 2026
m*r*e*w*r*s.nl F Jun 30, 2026
d*r*n*t*a*.com (WP 7.0) F Jun 30, 2026
d*r*n*.com (WP 7.0) F Jun 30, 2026
u*f*8.com A Jun 30, 2026
s*d*s*a*w*h.com (WP 7.0) F Jun 30, 2026
p*t*r*o*-*s*o*i*t*s.com F Jun 30, 2026
w*h*-*a*a.com (WP 5.0.25) F Jun 30, 2026
c*t*i*c*t*a*e.com (WP 6.9.4) F Jun 30, 2026
c*t*a*c*l*a*s.com F Jun 30, 2026
c*t*o*e*t*a*e*.com (WP 7.0) F Jun 30, 2026
i*e*o*t*i*t*r*.com (WP 6.9.4) F Jun 30, 2026
s*n*r*w*n*e*m*s*c.com (WP 7.0) F Jun 30, 2026
s*n*r*w*n*e*k*y*o*e*o*c*r*s.com (WP 7.0) F Jun 30, 2026
s*n*r*w*n*e*c*s*o*s*n*s.com (WP 7.0) F Jun 30, 2026
s*n*r*w*n*e*c*s*o*h*a*i*g*o*g*.com (WP 7.0) F Jun 30, 2026
j*m*a*o*b*o*s.com F Jun 30, 2026
m*b*n*v*s.com D Jun 30, 2026
w*r*d*i*h*u*g*n*c*d*.org (WP 6.9.4) F Jun 30, 2026
s*n*r*r*t*w*l*i*t*r*o*s.com (WP 6.9.4) F Jun 30, 2026
j*m*o*f*e*.com F Jun 30, 2026
i*e*p*f*t.com F Jun 30, 2026
c*t*y*l*y*o*b*r*.com (WP 5.0.25) F Jun 30, 2026
m*b*u*t*m*n*v*s.com D Jun 30, 2026
d*p*u*l*m*a*c*i*o*k*h*p*.com F Jun 30, 2026
d*p*u*l*m.com F Jun 30, 2026
i*e*a*a*e*.com (WP 7.0) F Jun 30, 2026
u*e*1.com (WP 6.8.5) F Jun 30, 2026
j*m*a*a*a*u*d*o*s.com (WP 7.0) F Jun 30, 2026
l*g*a*g*p*t*a*a*e.org (WP 7.0) F Jun 30, 2026
j*m*a*m*r*x*e*i*n*e.com (WP 6.9.4) F Jun 30, 2026
j*m*a*l*r*m*s*c.com F Jun 30, 2026
j*m*n*m*r*i*g*i*h*l*.com F Jun 30, 2026
m*v*n*e*v*n.com F Jun 30, 2026
p*s*o*k*n*a*g*r.com (WP 7.0) F Jun 30, 2026
s*n*o*i*p*o*g*m*s.com F Jun 30, 2026
j*s*.org D Jun 30, 2026
h*l*n*u*s*l*.c*.uk (WP 6.2.2) D Jun 30, 2026
s*n*i*g*i*o*r*g*i*d.com F Jun 30, 2026
l*s*c*q*i*s.org F Jun 30, 2026
b*l*n*e*e*i*i*n.com F Jun 30, 2026
b*l*n*e*m*r*d*a*.com F Jun 30, 2026
s*n*i*g*a*c*e*s.com F Jun 30, 2026
s*n*i*g*a*i*e*o*.com (WP 7.0) F Jun 30, 2026
g*f*e*c*r*e*s.com (WP 7.0) F Jun 30, 2026
t*e*i*h*r*o*.net (WP 7.0) F Jun 30, 2026
g*r*e*t*y*e*e*b*.org F Jun 30, 2026
w*y*c.org (WP 6.7.5) F Jun 30, 2026
p*s*i*e*n*o*e*o*l.com F Jun 30, 2026
s*n*b*a*t*r*n*o.com F Jun 30, 2026
w*u*i.com (WP 7.0) F Jun 30, 2026
g*l*r*e*y*t*s.net (WP 7.0) D Jun 30, 2026
w*y*c.com (WP 6.7.5) F Jun 30, 2026
g*e*i*t*c*s.com (WP 6.9.4) F Jun 30, 2026
s*i*y*a*k*e*s.com (WP 6.9.4) F Jun 30, 2026
a*i*g*l*o*e.com (WP 7.0) F Jun 30, 2026
b*k*r*i*w*o*t*.com (WP 6.9.4) F Jun 30, 2026
i*e*r*o*d*e*.com (WP 6.9.4) F Jun 30, 2026
a*l*a*t*c*n*e*.org (WP 7.0) F Jun 30, 2026
j*n*t*o*r*.ca F Jun 30, 2026
u*c*f.com F Jun 30, 2026
m*v*d*n*e*p*c*.com (WP 7.0) F Jun 30, 2026
l*l*y.org F Jun 30, 2026
g*l*o*.c*m.au (WP 6.8.5) F Jun 30, 2026
u*b*s*t*e*w*n*o.com F Jun 30, 2026
c*w*a*t*r*r*v*r.org (WP 6.9.4) F Jun 30, 2026
f*c*t*e*o*e*e*s.com (WP 7.0) F Jun 30, 2026
g*b*a*t*o*w*r*i*k.com (WP 7.0) F Jun 30, 2026
m*u*h*u*m*t*e*s.com (WP 6.7) F Jun 30, 2026
p*s*a*e*r*a.com F Jun 30, 2026
a*k*r*r*n*.de (WP 6.9.4) F Jun 30, 2026
l*g*t*o*r*e*e*p*e.org (WP 7.0) D Jun 30, 2026
l*g*t*o*r*e*n*v*r*e.org (WP 7.0) D Jun 30, 2026
l*s*a*a*.com (WP 7.0) F Jun 30, 2026
m*u*t*i*v*e*p*b*i*h*n*.com (WP 6.9.4) F Jun 30, 2026
s*a*a*a*.com (WP 6.7.5) F Jun 30, 2026
l*r*a*g*r*e*i*i*n*.fr (WP 5.1.22) F Jun 30, 2026
a*e*t*s*u*d*o*t*e*f.com (WP 6.8.5) F Jun 30, 2026
j*r*s*i*i.com (WP 5.7.15) F Jun 30, 2026
p*r*l*e*u*y*e*m.com (WP 6.9.4) F Jun 30, 2026
u*a*e*u*a*e*.com (WP 7.0) F Jun 30, 2026
r*p*e*f*c*.org (WP 7.0) F Jun 30, 2026
m*u*t*i*m*n*e*i*.com (WP 7.0) F Jun 30, 2026
d*l*m*c*.com F Jun 30, 2026
d*l*m*c*.com F Jun 30, 2026
d*l*m*c*.com F Jun 30, 2026
d*l*m*a*c*i*o*k*h*p*.com F Jun 30, 2026
j*j*b*n.com (WP 6.8.5) F Jun 30, 2026
w*s*e*c*n*0.org (WP 4.5.3) F Jun 30, 2026

Top 50 Plugins

Plugin Count
elementor 1,769,644
contact-form-7 1,750,080
elementor-pro 1,052,326
woocommerce 816,172
revslider 607,928
jetpack 454,193
js_composer 419,264
wp-rocket 341,718
essential-addons-for-elementor-lite 264,468
gravityforms 256,844
complianz-gdpr 256,690
google-site-kit 233,073
cookie-law-info 227,823
instagram-feed 224,426
sitepress-multilingual-cms 210,496
header-footer-elementor 206,459
google-analytics-for-wordpress 205,152
bluehost-wordpress-plugin 192,381
elementskit-lite 179,945
gutenberg 167,369
cookie-notice 148,545
litespeed-cache 144,836
gtranslate 124,680
wpforms-lite 123,517
the-events-calendar 122,059
astra-sites 113,006
popup-maker 109,469
woocommerce-payments 109,114
gutenberg-core 103,140
tablepress 102,347
honeypot 97,718
astra-addon 93,663
wp-smushit 90,688
duracelltomi-google-tag-manager 90,345
layerslider 89,022
all-in-one-seo-pack 88,939
bb-plugin 86,761
coblocks 86,708
akismet 84,861
premium-addons-for-elementor 84,239
cleantalk-spam-protect 82,390
ml-slider 82,307
mailchimp-for-wp 81,531
megamenu 80,141
woocommerce-gateway-stripe 79,274
jet-engine 77,996
fusion-builder 76,877
ewww-image-optimizer 76,825
wp-pagenavi 76,490
smart-slider-3 76,012

Top 50 Themes

Theme Count
hello-elementor 620,675
Divi 494,889
astra 413,531
flatsome 139,464
Avada 120,735
generatepress 114,904
oceanwp 80,219
kadence 78,433
pub 72,290
enfold 68,559
salient 64,995
twentyseventeen 54,263
bb-theme 53,343
betheme 52,409
twentytwentyfour 52,376
blocksy 50,788
cocoon-master 49,264
dt-the7 45,371
twentytwentyfive 45,048
woodmart 43,726
neve 38,023
Avada-Child-Theme 36,896
gox 36,325
h4 36,041
bridge 31,220
twentytwentyone 30,211
lightning 30,051
twentytwenty 28,732
swell 28,104
bricks 26,515
Impreza 26,007
Newspaper 24,225
twentytwentythree 22,097
epik-redesign 19,112
twentytwentytwo 18,755
uncode 18,446
pro 17,622
twentysixteen 17,586
storefront 16,301
sydney 16,276
Total 14,357
hello-theme-child-master 14,034
factory-templates-4 13,734
themify-ultra 12,943
extendable 12,691
hestia 12,538
yootheme 12,458
yith-wonder 12,083
porto 11,959
twentyfifteen 11,845