WP-e-Commerce
WP-e-Commerce copied to clipboard
WP eCommerce - The most popular independent eCommerce platform for WordPress
PHP changes to help with PHP 8 compatibility.
``` mod_fcgid: stderr: PHP Warning: count(): Parameter must be an array or an object that implements Countable in /plugins/wp-e-commerce/wpsc-includes/cart.class.php on line 434 mod_fcgid: stderr: PHP Warning: count(): Parameter must be...
I don't know why we did not allowed it before but it "might" be helpful in cases of recurring payments when you don't have access to the id, sessionid but...
Looking at my logs, I'm seeing a lot of warnings about a filter I added to `the_title`, many of which come from WPeC. According to [the `the_title` docs](https://developer.wordpress.org/reference/hooks/the_title/), the filter...
On sites with not large product catalogs, but limited resources the WPEC rss feed logic will consume all PHP memory and throw a fatal error. The RSS feed logic should...
Haven`t tested if it actually affects the tax calculation but it is possible. Made a screenshot for easier view: https://dl.dropboxusercontent.com/u/16683640/Screenshots/2013-12-17_1941.png The second level of radio boxes should not be allowed...
The current implementation will not return file sizes for remotely hosted download files. A file size can not be determined error message is returned. For non-local files it should be...
From customer messages. ```` 3. The WPEC Product Categories widget is disappointing and unacceptable. A. Widget Options: Displays ALL of the Parent Categories - has this option at the end:...
An example: ```` $order = new WPSC_Purchase_Log( $log_id ); $order->set( 'my_custom_data', '1' )->save(); ```` throws a notice since `my_custom_data` is not a field in the purchase log table but the...