diff --git a/easy-digital-downloads.php b/easy-digital-downloads.php index 6faba95d19..f4796c3c75 100755 --- a/easy-digital-downloads.php +++ b/easy-digital-downloads.php @@ -5,7 +5,7 @@ * Description: The easiest way to sell digital products with WordPress. * Author: Easy Digital Downloads * Author URI: https://easydigitaldownloads.com - * Version: 3.2.10 + * Version: 3.2.11 * Text Domain: easy-digital-downloads * Domain Path: /languages * Requires at least: 5.8 @@ -27,7 +27,7 @@ * @package EDD * @category Core * @author Easy Digital Downloads - * @version 3.2.10 + * @version 3.2.11 */ // Exit if accessed directly. diff --git a/includes/class-easy-digital-downloads.php b/includes/class-easy-digital-downloads.php index 9eeab937ca..463b280877 100644 --- a/includes/class-easy-digital-downloads.php +++ b/includes/class-easy-digital-downloads.php @@ -370,7 +370,7 @@ private function setup_constants() { // Plugin version. if ( ! defined( 'EDD_VERSION' ) ) { - define( 'EDD_VERSION', '3.2.10' ); + define( 'EDD_VERSION', '3.2.11' ); } // Make sure CAL_GREGORIAN is defined. diff --git a/languages/easy-digital-downloads.pot b/languages/easy-digital-downloads.pot index 5d5ac404e6..2acab11ca5 100644 --- a/languages/easy-digital-downloads.pot +++ b/languages/easy-digital-downloads.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Easy Digital Downloads (Pro) plugin. msgid "" msgstr "" -"Project-Id-Version: Easy Digital Downloads (Pro) 3.2.10\n" +"Project-Id-Version: Easy Digital Downloads (Pro) 3.2.11\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-digital-downloads-pro\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-03-28T20:28:59+00:00\n" +"POT-Creation-Date: 2024-03-29T18:25:17+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" diff --git a/package.json b/package.json index e3541f8ea4..47478dc413 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "easy-digital-downloads", - "version": "3.2.10", + "version": "3.2.11", "description": "The easiest way to sell digital products with WordPress.", "private": true, "author": "Easy Digital Downloads", diff --git a/readme.txt b/readme.txt index 0e41586b4e..760aff0dfd 100755 --- a/readme.txt +++ b/readme.txt @@ -6,7 +6,7 @@ Tags: ecommerce, payments, sell, digital store, stripe Requires at least: 5.8 Tested up to: 6.4 Requires PHP: 7.4 -Stable Tag: 3.2.10 +Stable Tag: 3.2.11 License: GNU Version 2 or Any Later Version The #1 eCommerce plugin to sell digital products & subscriptions. Accept credit card payments with Stripe & PayPal and start your store today. @@ -54,6 +54,7 @@ With our included integrations, new payment methods are added when they become a Unlock the full potential of your digital store with Easy Digital Downloads — the best WordPress ecommerce solution renowned for its powerful reporting features. Dive deep into the heart of your digital business with tools designed not just to give you insights into what is happening in your business now, but also to help you make decisions that will help you grow your business. With the included date comparison tools, you can compare your sales, revenue, customers, and other data from one period to another, giving you the insights to make informed decisions and accelerate your growth. Some of the data points you get access to include: + * Customer growth * Revenue and Sales * Filtering by product @@ -223,6 +224,11 @@ Check out some of our popular posts for actionable advice for running your busin 8. Checkout - Default Theme == Changelog == += 3.2.11 = +* Order Management: When searching orders, a Product ID was being erroneously added to the filter arguments when it not have been. + +View the full changelog at [https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/](https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/?utm_medium=readme&utm_source=wporg&utm_campaign=edd-plugin&utm_term=description) + = 3.2.10 = * Downloads: Improved performance when creating and managing download directories. * Discounts: Start and End dates are properly handling the timezone. @@ -242,8 +248,6 @@ Check out some of our popular posts for actionable advice for running your busin * Migration: Improved the reliability of the EDD 3.0+ migration routine for possibly corrupt serialized data. * Migration: Improved PHP 8.0+ compatibility for the EDD 3.0+ migration routine. -View the full changelog at [https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/](https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/?utm_medium=readme&utm_source=wporg&utm_campaign=edd-plugin&utm_term=description) - = 3.2.9 = * Stripe: Resending the purchase receipt could fail if including the Stripe statement descriptor in the email template. * Settings: Improve the reliability of determining the timezone settings in WordPress. diff --git a/src/HTML/ProductSelect.php b/src/HTML/ProductSelect.php index b58e42650f..b1911b1044 100644 --- a/src/HTML/ProductSelect.php +++ b/src/HTML/ProductSelect.php @@ -93,7 +93,7 @@ protected function defaults() { */ private function get_options() { $products = $this->get_products(); - $options = array(); + $options = array( '' => '' ); if ( $products ) { foreach ( $products as $product ) { // If bundles are not allowed, skip any products that are bundles.