
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.
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:
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:
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.
For documentation, video tutorials, screenshots, support, and updates, please visit:
Simple Shopping Cart Documentation
or
Simple Shopping Cart Details Page
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.
The following language translations are already available:
You can translate the plugin using this documentation.
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.
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
Add the following shortcode where you want to show the compact shopping cart:
[wp_compact_cart]
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.
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"]