Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
== Changelog ==
= 7.0.7 - Jan 29, 2026 =
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**

= 7.0.6 - Jan 29, 2026 =
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**

Expand Down
4 changes: 2 additions & 2 deletions ecwid-shopping-cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Description: Ecwid by Lightspeed is a full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
Text Domain: ecwid-shopping-cart
Author: Ecwid Ecommerce
Version: 7.0.6
Version: 7.0.7
Author URI: https://go.lightspeedhq.com/ecwid-site
License: GPLv2 or later
*/
Expand Down Expand Up @@ -1833,7 +1833,7 @@ function ecwid_clear_all_cache()

if ( array_key_exists( $key, $_GET ) ) {

if ( isset( $_GET['_wpnonce'] ) && ! wp_verify_nonce( wp_unslash( $_GET['_wpnonce'] ), $key ) ) {
if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( wp_unslash( $_GET['_wpnonce'] ), $key ) ) {
return;
}

Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Requires at least: 4.4
Tested up to: 6.9
Stable tag: 7.0.6
Stable tag: 7.0.7

Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support.

Expand Down Expand Up @@ -152,6 +152,9 @@ You can use Ecwid’s built-in import tools to copy your store products from any
* [Ecwid Help Center](http://help.ecwid.com "Ecwid Help")

== Changelog ==
= 7.0.7 - Jan 29, 2026 =
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**

= 7.0.6 - Jan 29, 2026 =
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**

Expand Down
Loading