Version Description
- Change: CSV sales export now puts the item quanity in a separate column from the product title.
- Fix: Core checkout fields cannot be restored if they were deleted before upgrading to 3.8.8.
- Fix: Insecure SSL resources when WordPress is using SSL, or "Force SSL Checkout" is enabled.
- Fix: Issue with WPML and Variations.
- Fix: Shipping & Total Order values are wrong on Sales Log page.
- Fix: Terms and Conditions - Checkout page breaks if you read the terms and conditions.
- Fix: Total shipping value and total price incorrect in transaction results.
- Fix: Variation sales prices are inaccurate in Product Specials Widget
Download this release
Release Info
Developer | garyc40 |
Plugin | WP eCommerce |
Version | 3.8.8.2 |
Comparing to | |
See all releases |
Code changes from version 3.8.8.2-dev to 3.8.8.2
- readme.txt +3 -2
- wp-shopping-cart.php +1 -1
- wpsc-core/wpsc-constants.php +3 -3
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WP e-Commerce ===
|
2 |
-
Contributors: mufasa,
|
3 |
Donate link: http://getshopped.org
|
4 |
Tags: e-commerce, wp-e-commerce, shop, cart, paypal, authorize, stock control, ecommerce, shipping, tax
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.3.2
|
7 |
-
Stable tag: 3.8.8.
|
8 |
|
9 |
WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online.
|
10 |
|
@@ -161,6 +161,7 @@ After upgrading from earlier versions look for link "Update Store". This will up
|
|
161 |
* Fix: Core checkout fields cannot be restored if they were deleted before upgrading to 3.8.8.
|
162 |
* Fix: Insecure SSL resources when WordPress is using SSL, or "Force SSL Checkout" is enabled.
|
163 |
* Fix: Issue with WPML and Variations.
|
|
|
164 |
* Fix: Terms and Conditions - Checkout page breaks if you read the terms and conditions.
|
165 |
* Fix: Total shipping value and total price incorrect in transaction results.
|
166 |
* Fix: Variation sales prices are inaccurate in Product Specials Widget
|
1 |
=== WP e-Commerce ===
|
2 |
+
Contributors: mufasa, mychelle, garyc40, justinsainton
|
3 |
Donate link: http://getshopped.org
|
4 |
Tags: e-commerce, wp-e-commerce, shop, cart, paypal, authorize, stock control, ecommerce, shipping, tax
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.3.2
|
7 |
+
Stable tag: 3.8.8.2
|
8 |
|
9 |
WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online.
|
10 |
|
161 |
* Fix: Core checkout fields cannot be restored if they were deleted before upgrading to 3.8.8.
|
162 |
* Fix: Insecure SSL resources when WordPress is using SSL, or "Force SSL Checkout" is enabled.
|
163 |
* Fix: Issue with WPML and Variations.
|
164 |
+
* Fix: Shipping & Total Order values are wrong on Sales Log page.
|
165 |
* Fix: Terms and Conditions - Checkout page breaks if you read the terms and conditions.
|
166 |
* Fix: Total shipping value and total price incorrect in transaction results.
|
167 |
* Fix: Variation sales prices are inaccurate in Product Specials Widget
|
wp-shopping-cart.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WP e-Commerce
|
4 |
* Plugin URI: http://getshopped.org/
|
5 |
* Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://docs.getshopped.org/" target="_blank">Documentation</a>
|
6 |
-
* Version: 3.8.8.2
|
7 |
* Author: Instinct Entertainment
|
8 |
* Author URI: http://getshopped.org/
|
9 |
**/
|
3 |
* Plugin Name: WP e-Commerce
|
4 |
* Plugin URI: http://getshopped.org/
|
5 |
* Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://docs.getshopped.org/" target="_blank">Documentation</a>
|
6 |
+
* Version: 3.8.8.2
|
7 |
* Author: Instinct Entertainment
|
8 |
* Author URI: http://getshopped.org/
|
9 |
**/
|
wpsc-core/wpsc-constants.php
CHANGED
@@ -26,9 +26,9 @@ function wpsc_core_constants() {
|
|
26 |
if(!defined('WPSC_URL'))
|
27 |
define( 'WPSC_URL', plugins_url( '', __FILE__ ) );
|
28 |
// Define Plugin version
|
29 |
-
define( 'WPSC_VERSION', '3.8.8.2
|
30 |
-
define( 'WPSC_MINOR_VERSION', '
|
31 |
-
define( 'WPSC_PRESENTABLE_VERSION', '3.8.8.2
|
32 |
|
33 |
// Define Debug Variables for developers
|
34 |
define( 'WPSC_DEBUG', false );
|
26 |
if(!defined('WPSC_URL'))
|
27 |
define( 'WPSC_URL', plugins_url( '', __FILE__ ) );
|
28 |
// Define Plugin version
|
29 |
+
define( 'WPSC_VERSION', '3.8.8.2' );
|
30 |
+
define( 'WPSC_MINOR_VERSION', '552700' );
|
31 |
+
define( 'WPSC_PRESENTABLE_VERSION', '3.8.8.2' );
|
32 |
|
33 |
// Define Debug Variables for developers
|
34 |
define( 'WPSC_DEBUG', false );
|