WordPress Simple Shopping Cart

Description

The WordPress Simple Shopping Cart plugin allows you to create ‘Add to Cart’ buttons for your products or services on your site. This simple shopping cart plugin lets you sell products and services directly from your own WordPress site and turns your WP blog into an e-commerce site.

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

It allows you to add/display the shopping cart on any post, page or sidebar easily. The shopping cart shows the user what they currently have in the cart and allows them to change quantity or remove the items.

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.

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

The plugin also has an option to use the smart PayPal payment buttons. The following video shows a checkout demo using PayPal smart button.

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

For video tutorial, screenshots, detailed documentation, support and updates, please visit:

WP Simple Cart Documentation
or
WP Simple 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.
  • 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 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 – https://github.com/Arsenal21/simple-wp-shopping-cart

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:

<?php echo print_wp_cart_button_for_product(‘PRODUCT-NAME’, PRODUCT-PRICE); ?>

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=”https://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

  1. To use shipping cost for your product, use the “shipping” parameter. Here is an example shortcode usage:
    [wp_cart_button name=”Test Product” price=”19.95″ shipping=”4.99″]

or use the following php function from your wordpress template files

Visit the shipping setup documentation page for more details.

Using Variation Control

  1. To use variation control use the variation parameter in the shortcode:
    [wp_cart_button name=”Test Product” price=”25.95″ var1=”VARIATION-NAME|VARIATION1|VARIATION2|VARIATION3″]

example usage: [wp_cart_button name=”Test Product” price=”29.95″ var1=”Size|small|medium|large”]

  1. To use multiple variation for a product (2nd or 3rd variation), use the following:

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

[wp_cart_button name=”Test Product” price=”29.95″ var1=”Size|small|medium|large” var2=”Color|red|green|blue” var3=”Sleeve|short|full”]

Screenshots

Installation

  1. Unzip and Upload the folder ‘wordpress-paypal-shopping-cart’ to the ‘/wp-content/plugins/’ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Go to Settings of this plugin and configure the options (for example: your email, Shopping Cart name, Return URL etc.)
  4. Use the shortcode to add a product to a post or page where you want it to appear.

FAQ

Where can I find the documentation for this pluign?

Visit the documentation page here

Can this plugin be used to accept paypal payment for a service or a product?

Yes

Can this plugin be used to sell products and services using the Stripe payment gateway?

Yes

Does this plugin have shopping cart

Yes

Does this plugin have the option to use the new PayPal checkout option

Yes. you can enable the new PayPal checkout option in the settings menu of the plugin.

Can I enable terms and conditions for my customers to agree to before they checkout?

Yes. you can enable terms and conditions in the settings menu of the plugin.

Can the shopping cart be added to a checkout page?

Yes

Is the ‘Add to Cart’ button customizable?

Yes

Does this plugin use a return URL to redirect customers to a specified page after PayPal has processed the payment?

Yes

How can I add a buy button on the sidebar widget of my site?

Check the documentation on how to add buy buttons to the sidebar

Can I use this plugin to sell digital downloads?

Yes. See the digital download usage documentation

Can I configure discount coupon with this shopping cart plugin?

Yes. you can setup discount coupons from the “Coupon/Discount” interface of the plugin.

Can I configure product sale notification so I get notified when a sale is made?

Yes. You can configure sale notification from the “Email Settings” interface of the plugin.

Can I modify the product box thumbnail image?

Yes.

Can I customize the format of the price display?

Yes.

Can the customers be sent to a cancel URL when they click “cancel” from the PayPal checkout page?

Yes.

Does this plugin have a Stripe Checkout option?

Yes, you can configure the Stripe checkout option in the settings menu of the plugin.

Reviews

September 21, 2024 1 reply
Not real fancy, but it is easy to set up and works well.
September 16, 2024 1 reply
I’ve been using the WordPress Simple Shopping Cart plugin for several years, and it has consistently proven to be a reliable and useful tool for managing small online sales. It’s easy to set up, integrates seamlessly with any WordPress theme, and provides just the right amount of functionality for small stores. The simple “Add to Cart” buttons are easy to place anywhere on the site, and PayPal transactions run smoothly. For those who need a no-fuss, lightweight e-commerce solution, this plugin is a perfect choice. Highly recommended!
July 2, 2024 1 reply
Really happy with the simplicity of the plugin. And when I reached out to the plugin support, even on the free version, the reply came quickly and very helpful. Super cool.
Read all 204 reviews

Contributors & Developers

“WordPress Simple Shopping Cart” is open source software. The following people have contributed to this plugin.

Contributors

“WordPress Simple Shopping Cart” has been translated into 6 locales. Thank you to the translators for their contributions.

Translate “WordPress Simple Shopping Cart” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

5.0.7

  • Added a new feature to display the order summary on the ‘Thank You’ page after checkout. Refer to this documentation for more details.
  • The ‘Thank you’ page gets created automatically at plugin install time.
  • Added a new feature to use the Stripe automatic tax feature for Stripe checkout.
  • New filter hook added ‘wpsc_custom_postage_cost’ to allow custom postage cost calculation.

5.0.6

  • Option to hide the quantity field in the cart. This can be useful for a site selling only digital products where the quantity is always 1.
  • Added a new option to empty the shopping cart from the cart page.
  • The remove item icon in the cart now uses an SVG icon for better performance.
  • The Stripe checkout will show the payment method options based on what the merchant has enabled in their Stripe account.
  • The Stripe API version for creating Stripe checkout session has been updated to the latest version.
  • Added an option to enable HTML email for the notification emails.

5.0.5

  • New option in the settings menu to force collect customer’s shipping address for stripe checkout.
  • Fixed an issue with the quote character in the shipping variation settings.
  • Updated the language POT file.
  • Added blueprint.json file to enable plugin preview feature of WordPress.

5.0.4

  • Updated the PPCP JavaScript SDK loading code to improve the race condition that may occur on some sites.
  • Language translation POT file updated.
  • The shipping region based shipping amount feature now list the countries in alphabetical order.
  • Added a notice in the admin interface to inform the users about switching from PayPal Smart checkout to the PayPal PPCP checkout.

5.0.3

  • Added a new shipping amount additions by region feature.
  • The shipping related settings have been moved to a new tab in the settings menu.
  • Added more error logging messages for the PayPal Commerce Platform Checkout option.
  • Updated the reset_wp_cart query after checkout redirection.
  • Fixed a price calculation issue with the stripe checkout.

5.0.2

  • Added the ‘category’ parameter in the PPCP API call.
  • Fixed an issue with the variations not working with the product name character support enhancement that we added in the previous version.

5.0.1

  • Added a ‘digital’ parameter in the shortcode to specify a digital product.
  • The shipping preference is set based on the ‘digital’ parameter in the PayPal Commerce Platform Checkout option.
  • The product name will support more special characters and foreign characters.
  • Added a utility function to check for special characters in the product name.

5.0.0

  • Added the New PayPal Commerce Platform Checkout option. You can enable it from the settings menu of the plugin.
  • Added a feature to enable Terms and conditions in the shopping cart.
  • Renamed the ‘Advanced Settings’ tab to ‘PayPal Smart Checkout’.
  • PayPal has deprecated the Smart Checkout option and replaced it with the new PayPal Commerce Platform Checkout option. The new checkout option is now available in the plugin.
  • New utility function added for logging debug array.
  • The ‘payment gateway’ that is used for a transaction is also displayed in the order details page.
  • Reorganized some of the files in the plugin.

4.7.2

  • Output escaping & sanitization added to checkout page redirection url.

4.7.1

  • Shows the string “Item” for 1. Show the string “Items” for 0 or more than 1.
  • Updated the help text for the sandbox mode option to include Stripe testmode.
  • PHP8 related update for the shipping calculation in the cart.
  • Added a new option to enable shopping cart anchor.
  • Added CSS class to the shopping cart title.

4.7.0

  • Unique names for debug log file name.
  • Updated the translation POT file.
  • Added a CSS wrapper class to the product box shortcode output.
  • Added documentation for using the blocks in the new WordPress editor.

4.6.9

  • Shopping Cart block inserter related: fixed a rendering issue when both a shortcode and a block inserter is used with the smart checkout option.
  • Issue with “Collect Customer Input” addon’s form validation and smart PayPal checkout button fixed.
  • Jquery loading issue fixed.

4.6.8

  • Stripe payment gateway: fixed a rounding issue with the base shipping amount.

4.6.7

  • The general settings menu items have been reorganized into two separate sections: PayPal Settings and Shopping Cart Settings.
  • Issue using quotes in the block attribute fields has fixed.
  • Moved the ‘Disable Standard PayPal Checkout’ option to the general settings so it can work in combination with the Stripe checkout settings.
  • Fixed the per checkout shipping amount issue with the newly added Stripe checkout option

4.6.6

  • Added Stripe payment gateway checkout option. The Stripe checkout option can be enabled in the settings menu.
  • Improvements to stop a hash error when the product name contains a special character.
  • Three new gutenberg blocks (Add-to-Cart, Product Box and Shopping Cart) added.

4.6.5

  • Reworked the main cart function to use a class instead of PHP session. This is part of a series of improvements that we are making to the plugin.
  • Optimized the saving of the cart to the order post meta.
  • The custom field values are saved to the order post meta instead of session.
  • Although the upgrade is designed to be seamless and compatible with older versions, significant changes have been made in this version. Therefore, it is advisable to back up your site before proceeding with the upgrade.

4.6.4

  • The CSV export now directly streams the CSV file to the browser so you can save/download the exported orders data directly to your PC.

4.6.3

  • Added a new method to retrieve the current page URL for better server compatibility.
  • Added a new filter hook.

4.6.2

  • Easy shortcode copy and paste option in the settings.
  • Added output escaping to the [wp_cart_button] shortcode.

4.6.1

  • Apply floatval to shipping amount (if used) to prevent an error in PHP8 system.

4.6.0

  • Compatibility with Batcache system.

4.5.9

  • Collect and save address line 2 (if available) for PayPal Smart checkout option.

4.5.8

  • PHP 8.1 related compatibility update.

4.5.7

  • Cart widget PHP notice fixed for PHP8.

4.5.6

  • WP 5.9 Compatibility. Fixed the cart widget in the widgets menu.

4.5.5

  • Fixed a rounding issue with applying discount coupon to the cart.

4.5.4

  • Fixed an issue with the paypal smart checkout option sometimes giving an error “Order ID does not exist”.

4.5.3

  • WP 5.6.1 compatibility update.

4.5.2

  • JQuery UI CSS library is now included inside the plugin.
  • Added more input sanitization.
  • Added an option in the settings to disable the price check validation. Some admins prefer to have this check turned off.

4.5.1

  • If your site uses caching, empty the cache after you upgrade the plugin (to delete stale cached data).
  • Improved the price hash compare function. Thanks to @XshIsMe.
  • Added Spanish language translation files.

4.5.0

  • Added a new action hook to allow affiliate plugin integration with the PayPal smart checkout option.
  • The compact cart shortcode output can be translated fully.
  • Completed testing on WP 5.5

4.4.9

  • Smart Checkout fix with certain coupon code application (some discount amount was giving an invalid amount error).
  • Added link to smart checkout setup documentation.

4.4.8

  • Added CSS class to the remove item table data.
  • Updated the code related to quantity change (using the up/down arrows) to work better.
  • Fix: Undefined index notices.
  • Added a new utility function to write to log file.

4.4.7

  • Fixed the “Order ID does not exist in IPN Notification” issue with smart paypal checkout option for some sites.

4.4.6

  • Changed the quantity input field to be a “number” type field. Customers will be able to change the number value easily.
  • The session for the shopping cart is only started on the front-end.

4.4.5

  • Fixed issues with custom fields when using Collect Customer Input addon.

4.4.4

  • More texts are now translatable. POT file updated.
  • Added more filter hooks so the customer Input addon fields are now exported to CSV as well.

4.4.3

  • Added button customization options (in the PayPal Smart Checkout Settings) for the smart paypal checkout button.

4.4.2

  • Added PayPal smart button configuration documentation
    https://www.tipsandtricks-hq.com/ecommerce/enabling-smart-button-checkout-setup-and-configuration-4568

4.4.1

  • Added a new checkout option that uses the smart PayPal payment button. You can enable it from the PayPal Smart Checkout Settings menu.
  • Added Breton language files. Thanks to Florian for submitting the language files.

4.4.0

  • The order date is now included in the exported CSV file.
  • Updated the German language file. Thanks to Oliver Juwig.
  • Updated some CSS code to not show border in the cart.
  • Updated the checkout button image.

4.3.9

  • The note to seller field has been removed as it is no longer supported by PayPal.

4.3.8

  • The settings menu has been moved to a new menu called “Simple Cart” in the admin dashboard.
  • The coupons tab has been moved to a separate menu item under the “Simple Cart” admin menu.
  • Added a new email merge tag for the sale notification emails. The new tag is {order_id}
  • Added github repository link in the readme file.
  • Added couple of filter hooks in the shopping cart display function.
  • The delete coupon link color has been changed to red.

4.3.7

  • Added Russian Ruble currency to the currency dropdown option.
  • Added CSS class to the quantity input field in the cart.
  • Copied the nextgen gallery template to the root folder.
  • The email merge tags can now be used in the sale notification email subject.
  • Added a new parameter (button_text) for the add to cart button shortcode. This parameter can be used to specify a custom button text for the add to cart button. Usage instructions at the following page:
    https://www.tipsandtricks-hq.com/ecommerce/simple-shopping-cart-customize-the-add-to-cart-button-text-via-shortcode-4383

4.3.6

  • There is now a basic shortcode inserter for this plugin in the wp post/page editor.
  • The cart orders search functionality can now search records using customer’s email and name.
  • Added CSS classes to the variation drop-downs.
  • CSS optimization in the settings interface of the plugin.

4.3.5

  • The deprecated page styles field has been replaced with an image URL field in the settings.
  • The Image URL field can be used to specify an image/logo URL that will be displayed in the paypal checkout page.

4.3.4

  • All the paypal supported currency codes are shown as a dropdown option in the plugin settings.
  • Currency code value in the settings is automatically converted to uppercase string if the user mistakenly enters a lowercase string.

4.3.3

  • Fix for paypal adding “+” character between words in the item name parameter.

4.3.2

  • Bugfix for the new custom field change.

4.3.1

  • Custom field values will now be urlencoded.

4.3.0

  • Added Brazilian Portuguese Language translation to the plugin. The translation file was submitted by Fabio Goncalves.
  • If the total shipping cost in the cart is 0 then the plugin will send a flag to paypal to not prompt for shipping address during checkout.

4.2.9

  • Added a new option to export all the orders data to a CSV file. This new option can be found under the Simple Cart Settings -> Tools menu.
  • Added a new filter (wspsc_paypal_ipn_notify_url) to allow overriding of the PayPal IPN notify URL.
  • Added a new compact cart shortcode that uses a different style. Read the following page to find out how it works:
    https://www.tipsandtricks-hq.com/ecommerce/simple-cart-showing-a-compact-shopping-cart-2925

4.2.8

  • Fixed an issue with the {payer_email} tag not working in the buyer notification email.

4.2.7

  • Added a new filter for the cart icon image (wspsc_cart_icon_image_src). It can be used to customize the cart icon image.
  • Added escaping for the cart link parameter.

4.2.6

  • Added a new email merge tag for phone number (when available). The new email tag is {phone}. Note that the phone number is an optional field on PayPal checkout page. So it may not be present if the customer doesn’t enter a phone number during the checkout.
  • Added a new shortcode parameter (thumb_alt) for the product box shortcode. It can be used to specify an alt tag for the product thumbnail image.
  • Added url_decode in the cart link parameter. So the link works even when the URL contains foreign characters.

4.2.5

  • Minor update for backwards compatibility with an old shortcode using variation.

4.2.4

  • Added a new filter for the checkout button image. It can be used to specify a custom button image for the checkout button.
    Example code: https://www.tipsandtricks-hq.com/ecommerce/customize-the-paypal-checkout-button-image-4026
  • Incomplete old cart orders will now be automatically cleaned by the plugin.
  • Made some improvements to the PayPal IPN validation code. It is fully compatible with the upcoming PayPal IPN changes.

4.2.2

  • Minor update for backwards compatibility with an old shortcode.
  • WordPress 4.5 compatibility.

4.2.1

  • Added backwards compatibility for the old shortcodes. So the old add to cart button shortcodes will continue to work as usual.

4.2.0

  • Added an option in the settings to disable nonce check for the add to cart button.
    This is useful for some sites that are using caching. Otherwise 48 hour old cached pages will have stale nonce and the nonce security check will fail.
    If you are using a caching solution on your site and having issue with nonce security check failing, then enable this option from the settings.

4.1.9

  • Added more sanitization and validation on POST/GET/REQUEST data.

4.1.8

  • Added a new filter in the cart (wspsc_cart_extra_paypal_fields) that will allow you to add extra hidden fields for the PayPal cart checkout.
  • Deleted the local copy of the Spanish language file so the plugin loads the language file from translate.www.remarpro.com.
  • Deleted the local copy of the Italian language file so the plugin loads the language file from translate.www.remarpro.com.
  • Deleted the local copy of the Swedish language file so the plugin loads the language file from translate.www.remarpro.com.
  • Deleted the local copy of the Turkish language file so the plugin loads the language file from translate.www.remarpro.com.
  • Improved the add to cart price validation code against potential vulnerability.

4.1.7

  • Added a new text field in the settings – Cancel URL.
  • Debug log file has been renamed to “ipn_handle_debug.txt”.
  • Added CSS class to the plain text add to cart button so it can be customized via custom CSS code.

4.1.6

  • Fixed an issue where post payment price validation would fail for a transaction with a discount coupon.

4.1.5

  • Added CSS classes to all the “tr” elements in the cart.
  • Added alt tag to all the images and icons in the cart.
  • Added Dutch Language translation to the plugin. The Turkish translation file was submitted by Boye Dorenbos.
  • Added a new email tag {address} that can be used in the notification email to include the buyers address.

4.1.4

  • Our plugin is being imported to translate.www.remarpro.com. Changed the plugin text domain so it can be imported into translate.www.remarpro.com.
  • Fixed an issue with an email shortcode not working in the buyer email body.

4.1.3

  • Updated the WP_Widget initialization to use PHP5 style constructor.
  • There is a bug in WordPress 4.3 for the widgets which prevents the sidebar widget from working. WordPress 4.3.1 will fix this.
    In the meantime you can use the following to show the shopping cart widget to the sidebar:
    https://www.tipsandtricks-hq.com/ecommerce/adding-shopping-cart-to-the-sidebar-of-wordpress-site-3073

4.1.2

  • Added a class to the cart header image element.
  • Removed an extra
    tag from the cart output.
  • Plugin is now compatible with WordPress 4.3.
  • Added another extra check to the price validation code.

4.1.1

  • Updated constructor methods in classes with PHP 5 style constructors.

4.1.0

  • Removed “v” from the version number.
  • Added robust price validation checks.

4.0.9

  • Changed the input slug of “product” name to be more specific.

4.0.8

  • Added Turkish Language translation to the plugin. The Turkish translation file was submitted by Vural Pamir.
  • WordPress 4.2 compatibility

4.0.7

  • The cart stylesheet file now uses the ‘wp_enqueue_scripts’ hook
  • Added a new shortcode parameter (thumb_target) which can be used to specify a target URL for the product thumbnail image
  • Coupon codes are now case-insensitive.
  • Updated the Italian language file.

4.0.6

  • Added an email tag to include the coupon code used in the notification email.
  • Added an extra check to prevent a debug notice message from showing when the cart is reset.
  • WordPress 4.1 compatibility.

4.0.5

  • Added two new filters to allow dynamic modification of the buyer and seller notification email body (just before the email is sent).
  • Added a new filter so the orders menu viewing permission can be overridden by an addon.
  • Added Danish Language translation to the plugin. The Danish translation file was submitted by Steve Jorgensen.
  • Added a function to strip special characters from price parameter in the shortcode.

4.0.4

  • Added some new email tags to show Transaction ID, Purchase Amount and Purchase Date (check your email settings field for details).
  • Made some improvements to the PayPal IPN validation code.

4.0.3

  • Fixed a few notices in the settings menu when run in debug mode.
  • Fixed a warning notice on the front end when run in debug mode.

4.0.2

  • Added a new option so you can store your custom language file for this plugin in a folder outside the plugin’s directory.
  • Added the following two new filters to allow customization of the add to cart button:
    wspsc_add_cart_button_form_attr
    wspsc_add_cart_submit_button_value
  • Added Text Domain and Domain Path values to the plugin header.
  • Added Norwegian language translation to the plugin. The Swedish translation file was submitted by Reidar F. Sivertsen.
  • Added some security checks a) to make sure that the payment is deposited to the email specified in the settings b) to block multiple payment notifications for the same transaction ID
  • Buyer’s contact phone number is now also saved with each order (given you have enabled it).
  • Added the following new filter to allow customization of the product box shortcode:
    wspsc_product_box_thumbnail_code

4.0.1

  • Added a new filter to format the price in the shopping cart. Example usage:
    https://www.tipsandtricks-hq.com/ecommerce/customizing-price-amount-display-currency-formatting-3247
  • WordPress 4.0 compatibility.

4.0.0

  • Changed the permission on the orders menu so it is only available to admin users from the backend.
  • Made some enhancement around the PHP session_start function call.
  • Added an extra check to prevent direct access to the cart file.
  • Added expiry date field in the discount coupon. You can now create discount coupons with an expiry.

3.9.9

  • Added a new feature that allows you to show the product thumbnail image in the shopping cart. Use “show_thumbnail” parameter in the shopping cart shortcode for this.
  • Added Swedish language translation to the plugin. The Swedish translation file was submitted by Felicia.
  • Fixed a minor bug with the checkout page style feature.
  • Added a new filter for the item name field in the shopping cart.
  • Made some minor CSS improvements for the cart output.
  • The {product_details} email shortcode will now show the full amount of the item (instead of the individual item amount).

3.9.8

  • Added Hebrew Language translation to the plugin. The Hebrew translation file was submitted by Sagi Cooper.
  • Added extra condition to address the “Invalid argument supplied” error that a few users were getting.

3.9.7

  • Added a new feature to open the checkout page in a new tab/window when user clicks the checkout button.
  • Updated the Cart Orders menu icon to use a slightly better looking dashicon.
  • Added a new filter to allow modification of the custom field value. Filter name is wpspc_cart_custom_field_value
  • Added a new action hook after the PayPal IPN is processed. This will allow you to do extra post payment processing task for your orders. Hook name wpspc_paypal_ipn_processed
  • Made some improvements to some of the shopping cart icons (cart and delete item icons have been updated).
  • Cart output will work with a responsive theme.

3.9.6

  • Added Czech Language translation to the plugin. The Czech translation file was submitted by Tomas Sykora.
  • Added a new option/feature to specify a custom paypal checkout page style name. The plugin will use the custom checkout page style if you specify one.
  • Each order now also shows the shipping amount in the order managment interface.

3.9.5

  • Added a new feature that lets you (the site admin) configure a sale notification email for the admin. When your customer purchase a product, you get a notification email. Activate this feature from the “Email Settings” interface of the plugin.
  • Added Polish language translation to the plugin. The Polish langage translation file was submitted by Gregor Konrad.
  • Fixed a minor issue with custom button images that uses HTTPS URL.
  • Added more CSS classes in the shopping cart so you can apply CSS tweaks easily.

3.9.4

  • Fixed a minor bug in the new compact cart shortcode [wp_compact_cart]

3.9.3

  • Added a new feature to show a compact shopping cart. You can show the compact shopping cart anywhere on your site (example: sidebar, header etc).
  • Language translation strings updated. Translation instruction here – https://www.tipsandtricks-hq.com/ecommerce/translating-the-wp-simple-shopping-cart-plugin-2627
  • Added a new function for getting the total cart item quantity (wpspc_get_total_cart_qty).
  • Added a new function to get the sub total amount of the cart (wpspc_get_total_cart_sub_total).

3.9.2

  • Added an option to specify a custom button image for the add to cart buttons. You can use the “button_image” parameter in the shortcode to customize the add to cart button image.
  • Coupon code that is used in a transaciton will be saved with the order so you can see it in the back end.

3.9.1

  • WP 3.8 compatibility

3.9.0 and 3.8.9

  • WP Super Cache workaround – https://www.tipsandtricks-hq.com/ecommerce/wp-shopping-cart-and-wp-super-cache-workaround-334
  • Added a new shortcode argument to specify a SKU number for your product.
  • Fixed a few debug warnings/notices
  • Added Italian language file

3.8.8

  • Added a discount coupon feature to the shopping cart. You can now configure discount coupon via the Simple cart settings -> Coupon/Discount menu
  • View link now shows the order details
  • fixed a bug where the shipping price wasn’t properly showing for more than $1000
  • WordPress 3.7 compatibility

3.8.7

  • Changed a few function names and made them unique to reduce the chance of a function name conflict with another plugin.
  • Added a new option in the plugin so the purchased items of a transaction will be shown under orders menu
  • Payment notification will only be processed when the status is completed.

3.8.6

  • Updated the broken settings menu link
  • Updated the NextGen gallery integration to return $arg1 rather than $arg2

3.8.5

  • Added an email settings menu where the site admin can customize the buyer email that gets sent after a transaction
  • Also, added the following dynamic email tags for the email body field:

{first_name} First name of the buyer
{last_name} Last name of the buyer
{product_details} The item details of the purchased product (this will include the download link for digital items).

3.8.4

  • Fixing an issue that resulted from doing a commit when www.remarpro.com plugin repository was undergoing maintenance

3.8.3

  • Improved the settings menu interface with the new shortcode usage instruction.

Full changelog for all versions can be found at the following URL:
https://www.tipsandtricks-hq.com/ecommerce/?p=319

VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17