Changeset 2427008
- Timestamp:
- 11/27/2020 03:58:29 AM (5 years ago)
- Location:
- doshii
- Files:
-
- 1 added
- 6 edited
-
tags/2.3.1 (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/doshii_function.php (modified) (2 diffs)
-
trunk/include/woo-doshii-initialise.php (modified) (1 diff)
-
trunk/include/woo-doshii-product-sync.php (modified) (1 diff)
-
trunk/include/woo-order-api.php (modified) (2 diffs)
-
trunk/include/woo-order-status.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
doshii/trunk/README.txt
r2402257 r2427008 5 5 Requires at least: 4.7 6 6 Tested up to: 5.5.1 7 Stable tag: 2.3. 07 Stable tag: 2.3.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 60 60 == Changelog == 61 61 62 = 2.3.1 = 63 64 Improved remote troubleshooting capabilities 65 62 66 = 2.3.0 = 63 67 -
doshii/trunk/doshii_function.php
r2402257 r2427008 7 7 Author URI: 8 8 Contributors: 9 Version: 2.3. 09 Version: 2.3.1 10 10 */ 11 11 … … 30 30 31 31 register_activation_hook( __FILE__, 'doshii_on_activation' ); 32 wp_enqueue_style( 'doshiistyle', DOSHII_BASE_URL . 'include/assets/css/doshii-style.css',false,'2.3. 0','all');32 wp_enqueue_style( 'doshiistyle', DOSHII_BASE_URL . 'include/assets/css/doshii-style.css',false,'2.3.1','all'); 33 33 include(DOSHII_BASE_DIR . '/include/woo-doshii-dbtable.php'); 34 34 include(DOSHII_BASE_DIR . '/include/woo-checkout-fields.php'); -
doshii/trunk/include/woo-doshii-initialise.php
r2402257 r2427008 40 40 'x-doshii-location-id' => $locationId.'', 41 41 'content-Type' => 'application/json', 42 'x-doshii-writeout' => 'WooCommerce 2.3. 0',42 'x-doshii-writeout' => 'WooCommerce 2.3.1', 43 43 ); 44 44 -
doshii/trunk/include/woo-doshii-product-sync.php
r2402257 r2427008 41 41 'x-doshii-location-id' => $locationId.'', 42 42 'content-Type' => 'application/json', 43 'x-doshii-writeout' => 'WooCommerce 2.3. 0',43 'x-doshii-writeout' => 'WooCommerce 2.3.1', 44 44 ) 45 45 )); -
doshii/trunk/include/woo-order-api.php
r2402257 r2427008 473 473 'address' => $consumerAddress 474 474 ], 475 'transactions' => $transactionsData 475 'transactions' => $transactionsData, 476 'woocommerce' => $order->get_data() 476 477 ]; 477 478 … … 486 487 'accept' => 'application/json', 487 488 'Accept-encoding' => 'gzip', 488 'x-doshii-writeout' => 'WooCommerce 2.3. 0',489 'x-doshii-writeout' => 'WooCommerce 2.3.1', 489 490 ), 490 491 'body' => json_encode($doshiiOrderPayload) -
doshii/trunk/include/woo-order-status.php
r2402257 r2427008 39 39 'x-doshii-location-id' => $doshii_options['location_id'].'', 40 40 'content-Type' => 'application/json', 41 'x-doshii-writeout' => 'WooCommerce 2.3. 0',41 'x-doshii-writeout' => 'WooCommerce 2.3.1', 42 42 ) 43 43 ));
Note: See TracChangeset
for help on using the changeset viewer.