WordPress maintenance or security needs? Reach out!
TLDWP

Plugin: wordpress-simple-paypal-shopping-cart (Used by 3,874 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
n*r*c*b*.com (WP 6.0.12) F Jul 12, 2026
z*m*u*i*.com F Jul 12, 2026
z*m*n*c.com (WP 6.7.5) F Jul 12, 2026
r*n*o*h*h*t*g*a*h*.com (WP 6.6.5) F Jul 12, 2026
n*r*a*c*a*e*r*a*.org (WP 7.0.1) F Jul 12, 2026
b*e*s*o*r*e*r*c*m*a*g*.com F Jul 12, 2026
g*e*n*a*e*h*n*.cn (WP 7.0.1) F Jul 12, 2026
l*r*o*c*.com (WP 7.0.1) F Jul 12, 2026
t*r*-*a*.com (WP 6.8.5) F Jul 12, 2026
j*z*o*.com F Jul 12, 2026
t*r*n*o*k*t*h*e*t.com F Jul 12, 2026
e*b*r*s*e*i*e*i*r*s*m*s*r*.com F Jul 12, 2026
r*a*r*e.fr F Jul 12, 2026
o*d*i*l*t.com (WP 7.0.1) C Jul 12, 2026
o*d*h*n*s*o*s*d*r*d.com (WP 6.6.5) F Jul 12, 2026
r*n*b*r*e*y.com (WP 6.9.4) F Jul 12, 2026
n*r*d*n*e*.com (WP 6.9.4) F Jul 12, 2026
a*a*a*e*i*.com (WP 6.9.4) F Jul 12, 2026
r*n*l*o*w*i*i*g.com (WP 7.0.1) F Jul 12, 2026
o*b*m*d*a*d.com (WP 7.0) F Jul 12, 2026
m*r*a*t*o*y*o*g*.com (WP 5.9.13) F Jul 12, 2026
r*n*o*e*.com (WP 6.9.4) F Jul 12, 2026
m*r*-*i*g.com D Jul 12, 2026
m*x*h*a*.org (WP 6.9.4) F Jul 12, 2026
c*s*c*.com (WP 7.0) B Jul 12, 2026
o*t*i*i*.com (WP 7.0.1) F Jul 12, 2026
c*r*v*h*p.com (WP 6.8.5) F Jul 12, 2026
s*i*c*r*b*a*r*a*a.com (WP 6.9.4) F Jul 12, 2026
c*m*n*s*r*e*.com F Jul 12, 2026
e*u*n*n*r*a*d.com (WP 6.7.5) F Jul 12, 2026
l*o*e*u*a*d*i*e.com (WP 5.8.13) F Jul 12, 2026
z*-*e*.com (WP 4.7.4) F Jul 12, 2026
g*e*h*u*d*t*d*o*k.c*.uk (WP 5.6.17) D Jul 12, 2026
b*a*e*i*l*h*a.com (WP 5.9) D Jul 12, 2026
n*n*n*e*s*t*a*n*n*s*l*t*o*s.com (WP 7.0.1) F Jul 12, 2026
e*m*r*i*g*b*o*.com (WP 6.9.4) F Jul 12, 2026
j*u*n*y*u*t*e*e.com (WP 7.0.1) F Jul 12, 2026
n*n*c*o*i*l*n*s.com F Jul 12, 2026
e*8*o*.com (WP 4.3.34) F Jul 12, 2026
b*b*l*l*u*s.de (WP 6.2.9) F Jul 12, 2026
a*a*i*b*n*.com (WP 6.9.1) F Jul 12, 2026
j*u*n*y*e*l*w*h*p*u*p*y.com (WP 7.0) F Jul 12, 2026
c*r*y*l*i*n*e*a*c*r*.com (WP 7.0.1) F Jul 12, 2026
c*r*y*l*i*n*e.com (WP 7.0.1) F Jul 12, 2026
x*v*e*d*s*n*r*n*v*r*e.com (WP 6.9.4) F Jul 12, 2026
x*v*e*g*e*i*l*t.com C Jul 12, 2026
s*o*t*a*s.pl (WP 7.0.1) F Jul 12, 2026
o*e*n*o*i*y.com (WP 6.9.4) F Jul 12, 2026
a*-*a*i*a*s.com D Jul 12, 2026
s*i*c*a*h.com F Jul 12, 2026
w*p.tokyo (WP 4.7.29) F Jul 12, 2026
b*a*k*w*n*a*l*n*.com (WP 6.9.4) C Jul 12, 2026
b*a*k*u*l*t.com (WP 6.9.4) F Jul 12, 2026
l*o*s*p*u*m*n*.com (WP 6.9) F Jul 12, 2026
s*e*c*y*e*s*o*s.com (WP 6.3.1) F Jul 12, 2026
c*r*w*o*c*n*t*u*t*o*.com D Jul 12, 2026
o*e*n*c*o*r*e.com (WP 7.0.1) F Jul 12, 2026
s*e*t*n*n*c*.com F Jul 12, 2026
h*p*y*r*i*s*h*l*.com (WP 7.0.1) F Jul 12, 2026
t*m*t*t*o*o*e*e.com F Jul 12, 2026
m*r*n*k*l*k.com (WP 5.5.3) F Jul 12, 2026
l*n*r*d*e*i*e.com F Jul 12, 2026
h*p*y*l*c*a*s*n*l.com (WP 7.0.1) F Jul 11, 2026
t*a*h*r*r*n*y.com (WP 7.0.1) F Jul 11, 2026
n*m*d*o*l*n*.com F Jul 11, 2026
t*m*l*o*h*k*.com (WP 7.0) F Jul 11, 2026
a*p*n*l*n*.com F Jul 11, 2026
r*l*h*u*n.com F Jul 11, 2026
l*n*h*l*r*m*l*r*.com (WP 7.0.1) F Jul 11, 2026
a*t*t*o*.com (WP 7.0.1) B Jul 11, 2026
b*a*k*a*k*t*a*s*.com (WP 7.0.1) F Jul 11, 2026
w*s*s*o*e*i*t*r*c*l*o*i*t*.org (WP 7.0.1) F Jul 11, 2026
a*s*r*c*k*n*.com (WP 6.9.4) F Jul 11, 2026
a*p*o*s*s*i*w*a*.com F Jul 11, 2026
j*s*m*k*r.com (WP 5.8.13) F Jul 11, 2026
j*s*l*n*o*.com (WP 7.0.1) F Jul 11, 2026
w*l*h*u*t*r*.org F Jul 11, 2026
h*p*y*g*a*a*o*p*n*.com (WP 6.9.4) F Jul 11, 2026
m*r*e*i*r*e*t*r*i*n.com F Jul 11, 2026
i*o*i*s*o*t*l*b.com (WP 7.0.1) F Jul 11, 2026
l*n*s*a*g*i*i*o*.com F Jul 11, 2026
w*c*a*p*.org (WP 6.9.4) F Jul 11, 2026
a*s*l*t*i*i*g.com (WP 5.4.6) F Jul 11, 2026
c*o*d*a*k*o*k*.com (WP 7.0) F Jul 11, 2026
s*b*c*r*o*l*o*.com (WP 7.0) F Jul 11, 2026
j*s*p*t*e*e*i*m.com F Jul 11, 2026
c*y*t*l*e*l*n*s*m*i*.com F Jul 11, 2026
n*d*.org (WP 6.7) F Jul 11, 2026
m*r*d*-*f*i*i*l.com (WP 5.5.3) F Jul 11, 2026
j*s*p*d*i*o.com F Jul 11, 2026
j*s*p*c*r*a*i*.com F Jul 11, 2026
b*a*k*a*b*o*s.com (WP 6.9.4) F Jul 11, 2026
h*p*y*g*n*b*o.com (WP 7.0.1) F Jul 11, 2026
m*u*d*a*b*r*t*n*.de F Jul 11, 2026
j*s*d*i*t.com (WP 5.2.17) F Jul 11, 2026
w*u*i.net (WP 7.0.1) F Jul 11, 2026
d*m*.ms (WP 6.8.5) F Jul 11, 2026
v*c*a.org (WP 7.0.1) F Jul 11, 2026
s*t*i*g*i*h*o*g*v*n*s*.com F Jul 11, 2026
h*p*e*a*t.com (WP 7.0.1) F Jul 11, 2026

Top 50 Plugins

Plugin Count
elementor 1,769,546
contact-form-7 1,749,981
elementor-pro 1,052,223
woocommerce 816,082
revslider 607,977
jetpack 454,169
js_composer 419,320
wp-rocket 341,914
essential-addons-for-elementor-lite 264,421
gravityforms 256,924
complianz-gdpr 256,737
google-site-kit 232,875
cookie-law-info 227,814
instagram-feed 224,435
sitepress-multilingual-cms 210,461
header-footer-elementor 206,426
google-analytics-for-wordpress 205,227
bluehost-wordpress-plugin 192,353
elementskit-lite 179,948
gutenberg 167,312
cookie-notice 148,571
litespeed-cache 144,502
gtranslate 124,687
wpforms-lite 123,530
the-events-calendar 122,126
astra-sites 112,994
popup-maker 109,488
woocommerce-payments 109,111
gutenberg-core 103,132
tablepress 102,372
honeypot 97,721
astra-addon 93,680
wp-smushit 90,667
duracelltomi-google-tag-manager 90,296
layerslider 89,062
all-in-one-seo-pack 88,933
bb-plugin 86,786
coblocks 86,664
akismet 84,909
premium-addons-for-elementor 84,280
cleantalk-spam-protect 82,390
ml-slider 82,251
mailchimp-for-wp 81,565
megamenu 80,147
woocommerce-gateway-stripe 79,293
jet-engine 77,971
fusion-builder 76,925
ewww-image-optimizer 76,777
wp-pagenavi 76,482
smart-slider-3 76,014

Top 50 Themes

Theme Count
hello-elementor 620,559
Divi 495,186
astra 413,486
flatsome 139,309
Avada 120,788
generatepress 114,633
oceanwp 80,215
kadence 78,625
pub 72,283
enfold 68,633
salient 65,039
twentyseventeen 54,205
bb-theme 53,345
betheme 52,372
twentytwentyfour 52,317
blocksy 50,753
cocoon-master 49,244
dt-the7 45,391
twentytwentyfive 44,990
woodmart 43,696
neve 38,026
Avada-Child-Theme 36,901
gox 36,289
h4 36,036
bridge 31,221
twentytwentyone 30,243
lightning 30,028
twentytwenty 28,729
swell 28,063
bricks 26,498
Impreza 26,031
Newspaper 24,165
twentytwentythree 22,103
epik-redesign 19,110
twentytwentytwo 18,748
uncode 18,454
pro 17,625
twentysixteen 17,590
sydney 16,367
storefront 16,296
Total 14,353
hello-theme-child-master 14,025
factory-templates-4 13,734
themify-ultra 12,929
extendable 12,681
hestia 12,551
yootheme 12,472
yith-wonder 12,080
porto 11,949
twentyfifteen 11,850