Plugin Directory

Changeset 3312959


Ignore:
Timestamp:
06/17/2025 07:07:25 AM (9 months ago)
Author:
Ecwid
Message:

Update to version 7.0.2 from GitHub

Location:
ecwid-shopping-cart
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ecwid-shopping-cart/tags/7.0.2/ecwid-shopping-cart.php

    r3269653 r3312959  
    66Text Domain: ecwid-shopping-cart
    77Author: Ecwid Ecommerce
    8 Version: 7.0.1
     8Version: 7.0.2
    99Author URI: https://ecwid.to/ecwid-site
    1010License: GPLv2 or later
  • ecwid-shopping-cart/tags/7.0.2/includes/class-ecwid-seo-links.php

    r3269653 r3312959  
    216216        if ( ! $pattern ) {
    217217            $patterns = self::get_seo_links_patterns();
     218
     219            // The '.*' pattern is deleted because it will always be triggered.
     220            $index = array_search( '.*', $patterns, true );
     221            if ( $index !== false ) {
     222                unset( $patterns[$index] );
     223                $patterns = array_values( $patterns );
     224            }
     225
     226            if ( empty( $patterns ) ) {
     227                return false;
     228            }
    218229
    219230            $pattern = '!(^' . implode( '$|^', $patterns ) . '$)!';
  • ecwid-shopping-cart/tags/7.0.2/readme.txt

    r3293802 r3312959  
    66Requires at least: 4.4
    77Tested up to: 6.8
    8 Stable tag: 7.0.1
     8Stable tag: 7.0.2
    99
    1010Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support.
     
    7676
    7777The plugin uses CDN services by AWS Cloudfront to speed up user stores. It is managed by the Ecwid Terms of Service and Privacy Policy and [AWS Customer Agreement](https://aws.amazon.com/agreement/).
     78
    7879
    7980== Installation ==
     
    153154
    154155== Changelog ==
     156= 7.0.2 - Jun 17, 2025 =
     157- Fixed an issue where a "2" was incorrectly appended to page slugs when the "URLs without ID" feature was enabled.
     158
    155159= 7.0.1 - Apr 8, 2025 =
    156160- **WordPress 6.8 compatibility.** The new WordPress version will be released soon. 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 6.8.
  • ecwid-shopping-cart/trunk/ecwid-shopping-cart.php

    r3269653 r3312959  
    66Text Domain: ecwid-shopping-cart
    77Author: Ecwid Ecommerce
    8 Version: 7.0.1
     8Version: 7.0.2
    99Author URI: https://ecwid.to/ecwid-site
    1010License: GPLv2 or later
  • ecwid-shopping-cart/trunk/includes/class-ecwid-seo-links.php

    r3269653 r3312959  
    216216        if ( ! $pattern ) {
    217217            $patterns = self::get_seo_links_patterns();
     218
     219            // The '.*' pattern is deleted because it will always be triggered.
     220            $index = array_search( '.*', $patterns, true );
     221            if ( $index !== false ) {
     222                unset( $patterns[$index] );
     223                $patterns = array_values( $patterns );
     224            }
     225
     226            if ( empty( $patterns ) ) {
     227                return false;
     228            }
    218229
    219230            $pattern = '!(^' . implode( '$|^', $patterns ) . '$)!';
  • ecwid-shopping-cart/trunk/readme.txt

    r3293802 r3312959  
    66Requires at least: 4.4
    77Tested up to: 6.8
    8 Stable tag: 7.0.1
     8Stable tag: 7.0.2
    99
    1010Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support.
     
    7676
    7777The plugin uses CDN services by AWS Cloudfront to speed up user stores. It is managed by the Ecwid Terms of Service and Privacy Policy and [AWS Customer Agreement](https://aws.amazon.com/agreement/).
     78
    7879
    7980== Installation ==
     
    153154
    154155== Changelog ==
     156= 7.0.2 - Jun 17, 2025 =
     157- Fixed an issue where a "2" was incorrectly appended to page slugs when the "URLs without ID" feature was enabled.
     158
    155159= 7.0.1 - Apr 8, 2025 =
    156160- **WordPress 6.8 compatibility.** The new WordPress version will be released soon. 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 6.8.
Note: See TracChangeset for help on using the changeset viewer.