Plugin Directory

Changeset 3407865


Ignore:
Timestamp:
12/02/2025 10:49:33 AM (4 months ago)
Author:
Ecwid
Message:

Update to version 7.0.5 from GitHub

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

Legend:

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

    r3327922 r3407865  
    66Text Domain: ecwid-shopping-cart
    77Author: Ecwid Ecommerce
    8 Version: 7.0.4
     8Version: 7.0.5
    99Author URI: https://go.lightspeedhq.com/ecwid-site
    1010License: GPLv2 or later
  • ecwid-shopping-cart/tags/7.0.5/includes/class-ecwid-oauth.php

    r3231865 r3407865  
    108108
    109109        $params['code']          = sanitize_text_field( wp_unslash( $_REQUEST['code'] ) );
     110        $params['store_id']      = sanitize_text_field( wp_unslash( $_REQUEST['store_id'] ) );
    110111        $params['client_id']     = Ecwid_Config::get_oauth_appid();
    111112        $params['client_secret'] = Ecwid_Config::get_oauth_appsecret();
     
    116117        $request = Ecwid_HTTP::create_post(
    117118            'oauth_authorize',
    118             Ecwid_Config::get_oauth_token_url(),
     119            Ecwid_Config::get_oauth_token_url() . '/' . $params['store_id'],
    119120            array(
    120121                Ecwid_HTTP::POLICY_RETURN_VERBOSE,
  • ecwid-shopping-cart/tags/7.0.5/includes/integrations/class-ecwid-integration-google-sitemap-generator.php

    r3010593 r3407865  
    22
    33class Ecwid_Integration_Google_Sitemap_Generator {
     4    public $plugin_version;
     5
    46    public function __construct() {
    57        // Older versions of Google XML Sitemaps plugin generate it in admin, newer in site area, so the hook should be assigned in both of them
  • ecwid-shopping-cart/tags/7.0.5/lib/ecwid_api_v3.php

    r3269653 r3407865  
    795795            $password = $params['password'];
    796796        } else {
    797             $password = wp_generate_password( 8 );
     797            $password = '';
    798798        }
    799799
  • ecwid-shopping-cart/tags/7.0.5/readme.txt

    r3406560 r3407865  
    153153
    154154== Changelog ==
     155= 7.0.5 - Dec 2, 2025 =
     156- **WordPress 6.9 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.9.
     157- Internal improvements and optimizations.
     158
    155159= 7.0.4 - Jul 15, 2025 =
    156160- Improved compatibility with the Jetpack plugin to ensure storefront scripts load correctly when 'Defer Non-Essential JavaScript' is enabled.
  • ecwid-shopping-cart/tags/7.0.5/templates/debug.php

    r3327922 r3407865  
    216216    <?php
    217217    ob_start();
    218     phpinfo();
     218    if( function_exists( 'phpinfo' ) ) {
     219        phpinfo();
     220    } else {
     221        echo 'phpinfo() function is not available';
     222    }
    219223    $contents = ob_get_contents();
    220224    ob_end_clean();
  • ecwid-shopping-cart/tags/7.0.5/templates/importer/woo-main.tpl.php

    r3183692 r3407865  
    1717                <div class="named-area__titles">
    1818                    <div class="named-area__title"><?php esc_html_e( 'Update your catalog', 'ecwid-shopping-cart' ); ?></div>
    19                     <div class="named-area__subtitle"><?php echo esc_html__( sprintf( __( 'This import will copy your WooCommerce products and categories to your %s store.', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?></div>
     19                    <div class="named-area__subtitle"><?php echo esc_html( sprintf( __( 'This import will copy your WooCommerce products and categories to your %s store.', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?></div>
    2020                </div>
    2121            </div>
  • ecwid-shopping-cart/trunk/ecwid-shopping-cart.php

    r3327922 r3407865  
    66Text Domain: ecwid-shopping-cart
    77Author: Ecwid Ecommerce
    8 Version: 7.0.4
     8Version: 7.0.5
    99Author URI: https://go.lightspeedhq.com/ecwid-site
    1010License: GPLv2 or later
  • ecwid-shopping-cart/trunk/includes/class-ecwid-oauth.php

    r3231865 r3407865  
    108108
    109109        $params['code']          = sanitize_text_field( wp_unslash( $_REQUEST['code'] ) );
     110        $params['store_id']      = sanitize_text_field( wp_unslash( $_REQUEST['store_id'] ) );
    110111        $params['client_id']     = Ecwid_Config::get_oauth_appid();
    111112        $params['client_secret'] = Ecwid_Config::get_oauth_appsecret();
     
    116117        $request = Ecwid_HTTP::create_post(
    117118            'oauth_authorize',
    118             Ecwid_Config::get_oauth_token_url(),
     119            Ecwid_Config::get_oauth_token_url() . '/' . $params['store_id'],
    119120            array(
    120121                Ecwid_HTTP::POLICY_RETURN_VERBOSE,
  • ecwid-shopping-cart/trunk/includes/integrations/class-ecwid-integration-google-sitemap-generator.php

    r3010593 r3407865  
    22
    33class Ecwid_Integration_Google_Sitemap_Generator {
     4    public $plugin_version;
     5
    46    public function __construct() {
    57        // Older versions of Google XML Sitemaps plugin generate it in admin, newer in site area, so the hook should be assigned in both of them
  • ecwid-shopping-cart/trunk/lib/ecwid_api_v3.php

    r3269653 r3407865  
    795795            $password = $params['password'];
    796796        } else {
    797             $password = wp_generate_password( 8 );
     797            $password = '';
    798798        }
    799799
  • ecwid-shopping-cart/trunk/readme.txt

    r3406560 r3407865  
    153153
    154154== Changelog ==
     155= 7.0.5 - Dec 2, 2025 =
     156- **WordPress 6.9 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.9.
     157- Internal improvements and optimizations.
     158
    155159= 7.0.4 - Jul 15, 2025 =
    156160- Improved compatibility with the Jetpack plugin to ensure storefront scripts load correctly when 'Defer Non-Essential JavaScript' is enabled.
  • ecwid-shopping-cart/trunk/templates/debug.php

    r3327922 r3407865  
    216216    <?php
    217217    ob_start();
    218     phpinfo();
     218    if( function_exists( 'phpinfo' ) ) {
     219        phpinfo();
     220    } else {
     221        echo 'phpinfo() function is not available';
     222    }
    219223    $contents = ob_get_contents();
    220224    ob_end_clean();
  • ecwid-shopping-cart/trunk/templates/importer/woo-main.tpl.php

    r3183692 r3407865  
    1717                <div class="named-area__titles">
    1818                    <div class="named-area__title"><?php esc_html_e( 'Update your catalog', 'ecwid-shopping-cart' ); ?></div>
    19                     <div class="named-area__subtitle"><?php echo esc_html__( sprintf( __( 'This import will copy your WooCommerce products and categories to your %s store.', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?></div>
     19                    <div class="named-area__subtitle"><?php echo esc_html( sprintf( __( 'This import will copy your WooCommerce products and categories to your %s store.', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?></div>
    2020                </div>
    2121            </div>
Note: See TracChangeset for help on using the changeset viewer.