Changeset 3118980
- Timestamp:
- 07/16/2024 08:28:59 AM (21 months ago)
- Location:
- ecwid-shopping-cart
- Files:
-
- 12 edited
- 1 copied
-
tags/6.12.16 (copied) (copied from ecwid-shopping-cart/trunk)
-
tags/6.12.16/ecwid-shopping-cart.php (modified) (2 diffs)
-
tags/6.12.16/includes/class-ecwid-admin-main-page.php (modified) (3 diffs)
-
tags/6.12.16/includes/class-ecwid-admin-storefront-page.php (modified) (1 diff)
-
tags/6.12.16/includes/class-ecwid-nav-menus.php (modified) (1 diff)
-
tags/6.12.16/includes/class-ecwid-oauth.php (modified) (2 diffs)
-
tags/6.12.16/readme.txt (modified) (2 diffs)
-
trunk/ecwid-shopping-cart.php (modified) (2 diffs)
-
trunk/includes/class-ecwid-admin-main-page.php (modified) (3 diffs)
-
trunk/includes/class-ecwid-admin-storefront-page.php (modified) (1 diff)
-
trunk/includes/class-ecwid-nav-menus.php (modified) (1 diff)
-
trunk/includes/class-ecwid-oauth.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ecwid-shopping-cart/tags/6.12.16/ecwid-shopping-cart.php
r3116030 r3118980 6 6 Text Domain: ecwid-shopping-cart 7 7 Author: Ecwid Ecommerce 8 Version: 6.12.1 58 Version: 6.12.16 9 9 Author URI: https://ecwid.to/ecwid-site 10 10 License: GPLv2 or later … … 2814 2814 2815 2815 $results = array(); 2816 $results['https_post_error'] = wp_remote_post($ecwid_oauth->get_test_post_url()); 2816 $results['https_post_error'] = wp_remote_post( 2817 $ecwid_oauth->get_test_post_url(), 2818 array('timeout' => 20) 2819 ); 2817 2820 2818 2821 foreach ($results as $type => $value) { -
ecwid-shopping-cart/tags/6.12.16/includes/class-ecwid-admin-main-page.php
r3110860 r3118980 116 116 } 117 117 118 $result = $request->do_request( );118 $result = $request->do_request( array( 'timeout' => 20 ) ); 119 119 120 120 if ( @$result['code'] == 403 && ( … … 134 134 return; 135 135 } 136 $result = $request->do_request( );136 $result = $request->do_request( array( 'timeout' => 20 ) ); 137 137 138 138 if ( $result['code'] == 200 ) { … … 144 144 145 145 $request = Ecwid_Http::create_get( 'embedded_admin_iframe', $iframe_src, array( Ecwid_Http::POLICY_RETURN_VERBOSE ) ); 146 $result = $request->do_request( );146 $result = $request->do_request( array( 'timeout' => 20 ) ); 147 147 }//end if 148 148 -
ecwid-shopping-cart/tags/6.12.16/includes/class-ecwid-admin-storefront-page.php
r3116030 r3118980 70 70 71 71 $api = new Ecwid_Api_V3(); 72 $res = $api->get_products( array( 'responseFields' => 'total,count,items(id,name )' ) );72 $res = $api->get_products( array( 'responseFields' => 'total,count,items(id,name,enabled)' ) ); 73 73 if ( $res ) { 74 74 $products = $res->items; -
ecwid-shopping-cart/tags/6.12.16/includes/class-ecwid-nav-menus.php
r3116030 r3118980 244 244 array( 245 245 'parent' => 0, 246 'responseFields' => 'total,count,items(id,name,url, nameTranslated,orderBy)',246 'responseFields' => 'total,count,items(id,name,url,enabled,nameTranslated,orderBy)', 247 247 ) 248 248 ); -
ecwid-shopping-cart/tags/6.12.16/includes/class-ecwid-oauth.php
r3002218 r3118980 33 33 34 34 public function test_post() { 35 $return = EcwidPlatform::http_post_request( $this->get_test_post_url() ); 35 $return = EcwidPlatform::http_post_request( 36 $this->get_test_post_url(), 37 array(), 38 array( 'timeout' => 20 ) 39 ); 36 40 37 41 return is_array( $return ); … … 117 121 ); 118 122 119 $return = $request->do_request( array( 'body' => $params ) ); 123 $return = $request->do_request( 124 array( 125 'body' => $params, 126 'timeout' => 20, 127 ) 128 ); 120 129 121 130 $result = new stdClass(); -
ecwid-shopping-cart/tags/6.12.16/readme.txt
r3116043 r3118980 6 6 Requires at least: 4.4 7 7 Tested up to: 6.6 8 Stable tag: 6.12.1 58 Stable tag: 6.12.16 9 9 10 10 Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support. Free plan available. … … 154 154 155 155 == Changelog == 156 = 6.12.16 - Jul 16, 2024 = 157 - Resolved an issue with the store sometimes failing to connect to a plugin. 158 - Additionally, we've fixed a problem that in some cases caused direct category links to display a 404 Not Found page. 159 156 160 = 6.12.15 - Jul 10, 2024 = 157 161 - After the last update, the our ecommerce plugin could cause an issue with urls and an issue with loading the admin area. We have fixed these issues. -
ecwid-shopping-cart/trunk/ecwid-shopping-cart.php
r3116030 r3118980 6 6 Text Domain: ecwid-shopping-cart 7 7 Author: Ecwid Ecommerce 8 Version: 6.12.1 58 Version: 6.12.16 9 9 Author URI: https://ecwid.to/ecwid-site 10 10 License: GPLv2 or later … … 2814 2814 2815 2815 $results = array(); 2816 $results['https_post_error'] = wp_remote_post($ecwid_oauth->get_test_post_url()); 2816 $results['https_post_error'] = wp_remote_post( 2817 $ecwid_oauth->get_test_post_url(), 2818 array('timeout' => 20) 2819 ); 2817 2820 2818 2821 foreach ($results as $type => $value) { -
ecwid-shopping-cart/trunk/includes/class-ecwid-admin-main-page.php
r3110860 r3118980 116 116 } 117 117 118 $result = $request->do_request( );118 $result = $request->do_request( array( 'timeout' => 20 ) ); 119 119 120 120 if ( @$result['code'] == 403 && ( … … 134 134 return; 135 135 } 136 $result = $request->do_request( );136 $result = $request->do_request( array( 'timeout' => 20 ) ); 137 137 138 138 if ( $result['code'] == 200 ) { … … 144 144 145 145 $request = Ecwid_Http::create_get( 'embedded_admin_iframe', $iframe_src, array( Ecwid_Http::POLICY_RETURN_VERBOSE ) ); 146 $result = $request->do_request( );146 $result = $request->do_request( array( 'timeout' => 20 ) ); 147 147 }//end if 148 148 -
ecwid-shopping-cart/trunk/includes/class-ecwid-admin-storefront-page.php
r3116030 r3118980 70 70 71 71 $api = new Ecwid_Api_V3(); 72 $res = $api->get_products( array( 'responseFields' => 'total,count,items(id,name )' ) );72 $res = $api->get_products( array( 'responseFields' => 'total,count,items(id,name,enabled)' ) ); 73 73 if ( $res ) { 74 74 $products = $res->items; -
ecwid-shopping-cart/trunk/includes/class-ecwid-nav-menus.php
r3116030 r3118980 244 244 array( 245 245 'parent' => 0, 246 'responseFields' => 'total,count,items(id,name,url, nameTranslated,orderBy)',246 'responseFields' => 'total,count,items(id,name,url,enabled,nameTranslated,orderBy)', 247 247 ) 248 248 ); -
ecwid-shopping-cart/trunk/includes/class-ecwid-oauth.php
r3002218 r3118980 33 33 34 34 public function test_post() { 35 $return = EcwidPlatform::http_post_request( $this->get_test_post_url() ); 35 $return = EcwidPlatform::http_post_request( 36 $this->get_test_post_url(), 37 array(), 38 array( 'timeout' => 20 ) 39 ); 36 40 37 41 return is_array( $return ); … … 117 121 ); 118 122 119 $return = $request->do_request( array( 'body' => $params ) ); 123 $return = $request->do_request( 124 array( 125 'body' => $params, 126 'timeout' => 20, 127 ) 128 ); 120 129 121 130 $result = new stdClass(); -
ecwid-shopping-cart/trunk/readme.txt
r3116043 r3118980 6 6 Requires at least: 4.4 7 7 Tested up to: 6.6 8 Stable tag: 6.12.1 58 Stable tag: 6.12.16 9 9 10 10 Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support. Free plan available. … … 154 154 155 155 == Changelog == 156 = 6.12.16 - Jul 16, 2024 = 157 - Resolved an issue with the store sometimes failing to connect to a plugin. 158 - Additionally, we've fixed a problem that in some cases caused direct category links to display a 404 Not Found page. 159 156 160 = 6.12.15 - Jul 10, 2024 = 157 161 - After the last update, the our ecommerce plugin could cause an issue with urls and an issue with loading the admin area. We have fixed these issues.
Note: See TracChangeset
for help on using the changeset viewer.