Changeset 3407865
- Timestamp:
- 12/02/2025 10:49:33 AM (4 months ago)
- Location:
- ecwid-shopping-cart
- Files:
-
- 14 edited
- 1 copied
-
tags/7.0.5 (copied) (copied from ecwid-shopping-cart/trunk)
-
tags/7.0.5/ecwid-shopping-cart.php (modified) (1 diff)
-
tags/7.0.5/includes/class-ecwid-oauth.php (modified) (2 diffs)
-
tags/7.0.5/includes/integrations/class-ecwid-integration-google-sitemap-generator.php (modified) (1 diff)
-
tags/7.0.5/lib/ecwid_api_v3.php (modified) (1 diff)
-
tags/7.0.5/readme.txt (modified) (1 diff)
-
tags/7.0.5/templates/debug.php (modified) (1 diff)
-
tags/7.0.5/templates/importer/woo-main.tpl.php (modified) (1 diff)
-
trunk/ecwid-shopping-cart.php (modified) (1 diff)
-
trunk/includes/class-ecwid-oauth.php (modified) (2 diffs)
-
trunk/includes/integrations/class-ecwid-integration-google-sitemap-generator.php (modified) (1 diff)
-
trunk/lib/ecwid_api_v3.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/templates/debug.php (modified) (1 diff)
-
trunk/templates/importer/woo-main.tpl.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ecwid-shopping-cart/tags/7.0.5/ecwid-shopping-cart.php
r3327922 r3407865 6 6 Text Domain: ecwid-shopping-cart 7 7 Author: Ecwid Ecommerce 8 Version: 7.0. 48 Version: 7.0.5 9 9 Author URI: https://go.lightspeedhq.com/ecwid-site 10 10 License: GPLv2 or later -
ecwid-shopping-cart/tags/7.0.5/includes/class-ecwid-oauth.php
r3231865 r3407865 108 108 109 109 $params['code'] = sanitize_text_field( wp_unslash( $_REQUEST['code'] ) ); 110 $params['store_id'] = sanitize_text_field( wp_unslash( $_REQUEST['store_id'] ) ); 110 111 $params['client_id'] = Ecwid_Config::get_oauth_appid(); 111 112 $params['client_secret'] = Ecwid_Config::get_oauth_appsecret(); … … 116 117 $request = Ecwid_HTTP::create_post( 117 118 'oauth_authorize', 118 Ecwid_Config::get_oauth_token_url() ,119 Ecwid_Config::get_oauth_token_url() . '/' . $params['store_id'], 119 120 array( 120 121 Ecwid_HTTP::POLICY_RETURN_VERBOSE, -
ecwid-shopping-cart/tags/7.0.5/includes/integrations/class-ecwid-integration-google-sitemap-generator.php
r3010593 r3407865 2 2 3 3 class Ecwid_Integration_Google_Sitemap_Generator { 4 public $plugin_version; 5 4 6 public function __construct() { 5 7 // 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 795 795 $password = $params['password']; 796 796 } else { 797 $password = wp_generate_password( 8 );797 $password = ''; 798 798 } 799 799 -
ecwid-shopping-cart/tags/7.0.5/readme.txt
r3406560 r3407865 153 153 154 154 == 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 155 159 = 7.0.4 - Jul 15, 2025 = 156 160 - 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 216 216 <?php 217 217 ob_start(); 218 phpinfo(); 218 if( function_exists( 'phpinfo' ) ) { 219 phpinfo(); 220 } else { 221 echo 'phpinfo() function is not available'; 222 } 219 223 $contents = ob_get_contents(); 220 224 ob_end_clean(); -
ecwid-shopping-cart/tags/7.0.5/templates/importer/woo-main.tpl.php
r3183692 r3407865 17 17 <div class="named-area__titles"> 18 18 <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> 20 20 </div> 21 21 </div> -
ecwid-shopping-cart/trunk/ecwid-shopping-cart.php
r3327922 r3407865 6 6 Text Domain: ecwid-shopping-cart 7 7 Author: Ecwid Ecommerce 8 Version: 7.0. 48 Version: 7.0.5 9 9 Author URI: https://go.lightspeedhq.com/ecwid-site 10 10 License: GPLv2 or later -
ecwid-shopping-cart/trunk/includes/class-ecwid-oauth.php
r3231865 r3407865 108 108 109 109 $params['code'] = sanitize_text_field( wp_unslash( $_REQUEST['code'] ) ); 110 $params['store_id'] = sanitize_text_field( wp_unslash( $_REQUEST['store_id'] ) ); 110 111 $params['client_id'] = Ecwid_Config::get_oauth_appid(); 111 112 $params['client_secret'] = Ecwid_Config::get_oauth_appsecret(); … … 116 117 $request = Ecwid_HTTP::create_post( 117 118 'oauth_authorize', 118 Ecwid_Config::get_oauth_token_url() ,119 Ecwid_Config::get_oauth_token_url() . '/' . $params['store_id'], 119 120 array( 120 121 Ecwid_HTTP::POLICY_RETURN_VERBOSE, -
ecwid-shopping-cart/trunk/includes/integrations/class-ecwid-integration-google-sitemap-generator.php
r3010593 r3407865 2 2 3 3 class Ecwid_Integration_Google_Sitemap_Generator { 4 public $plugin_version; 5 4 6 public function __construct() { 5 7 // 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 795 795 $password = $params['password']; 796 796 } else { 797 $password = wp_generate_password( 8 );797 $password = ''; 798 798 } 799 799 -
ecwid-shopping-cart/trunk/readme.txt
r3406560 r3407865 153 153 154 154 == 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 155 159 = 7.0.4 - Jul 15, 2025 = 156 160 - 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 216 216 <?php 217 217 ob_start(); 218 phpinfo(); 218 if( function_exists( 'phpinfo' ) ) { 219 phpinfo(); 220 } else { 221 echo 'phpinfo() function is not available'; 222 } 219 223 $contents = ob_get_contents(); 220 224 ob_end_clean(); -
ecwid-shopping-cart/trunk/templates/importer/woo-main.tpl.php
r3183692 r3407865 17 17 <div class="named-area__titles"> 18 18 <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> 20 20 </div> 21 21 </div>
Note: See TracChangeset
for help on using the changeset viewer.