Skip to content
Open
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.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.8
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
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.7
Stable tag: 7.0.8

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.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