Skip to content
Open

Dev #369

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
6 changes: 6 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
== Changelog ==
= 7.0.9 - Jul 22, 2026 =
- **WordPress 7.0 compatibility.** The new WordPress version is released. The Ecwid ecommerce shopping cart plugin is ready for the new release — everything works well in your WordPress admin and storefront pages. Feel free to upgrade your site to WordPress 7.0.

= 7.0.8 - Feb 13, 2026 =
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**

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

Expand Down
2 changes: 1 addition & 1 deletion 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.7
Version: 7.0.9
Author URI: https://go.lightspeedhq.com/ecwid-site
License: GPLv2 or later
*/
Expand Down
4 changes: 4 additions & 0 deletions includes/class-ec-store-admin-access.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ public function save_custom_user_profile_fields( $user_id ) {
return;
}

if ( ! $this->can_grant_access() ) {
return;
}

$user = new WP_User( $user_id );

if ( ! empty( $_POST['ec_store_admin_access'] ) ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.NonceVerification.Missing
Expand Down
10 changes: 8 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Tags: ecommerce, e-commerce, storefront, shopping cart, online store
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.7
Tested up to: 7.0
Stable tag: 7.0.9

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,12 @@ 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.9 - Jul 22, 2026 =
- **WordPress 7.0 compatibility.** The new WordPress version is released. The Ecwid ecommerce shopping cart plugin is ready for the new release — everything works well in your WordPress admin and storefront pages. Feel free to upgrade your site to WordPress 7.0.

= 7.0.8 - Feb 13, 2026 =
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**

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

Expand Down
Loading