Changeset 2858930
- Timestamp:
- 02/02/2023 11:52:00 AM (3 years ago)
- Location:
- viaads
- Files:
-
- 16 added
- 4 edited
-
tags/1.0.13 (added)
-
tags/1.0.13/apikey.php (added)
-
tags/1.0.13/externalJS.php (added)
-
tags/1.0.13/handleEmailGuid.php (added)
-
tags/1.0.13/hooks (added)
-
tags/1.0.13/hooks/addCart.php (added)
-
tags/1.0.13/hooks/orderHooks.php (added)
-
tags/1.0.13/hooks/pageLook.php (added)
-
tags/1.0.13/hooks/removeCart.php (added)
-
tags/1.0.13/http.php (added)
-
tags/1.0.13/js (added)
-
tags/1.0.13/js/viaads_handleEmailGuid.js (added)
-
tags/1.0.13/readme.txt (added)
-
tags/1.0.13/sync.php (added)
-
tags/1.0.13/userAgent.php (added)
-
tags/1.0.13/viaads.php (added)
-
trunk/hooks/orderHooks.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/sync.php (modified) (3 diffs)
-
trunk/viaads.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
viaads/trunk/hooks/orderHooks.php
r2858453 r2858930 38 38 39 39 // Billing Address 40 /*$order_billing_address = new stdClass();40 $order_billing_address = new stdClass(); 41 41 $order_billing_address->first_name = $order->get_billing_first_name(); 42 42 $order_billing_address->last_name = $order->get_billing_last_name(); … … 48 48 $order_billing_address->phone_number = $order->get_billing_phone(); 49 49 $order_billing_address->email = $order->get_billing_email(); 50 $order_object->Billing_address = $order_billing_address; */50 $order_object->Billing_address = $order_billing_address; 51 51 52 52 53 53 // Shipping Address 54 /*$order_shipping_address = new stdClass();54 $order_shipping_address = new stdClass(); 55 55 $order_shipping_address->first_name = $order->get_shipping_first_name(); 56 56 $order_shipping_address->last_name = $order->get_shipping_last_name(); … … 62 62 $order_shipping_address->phone_number = $order->get_shipping_phone(); 63 63 $order_shipping_address->email = $order->get_billing_email(); 64 $order_object->Shipping_address = $order_shipping_address; */64 $order_object->Shipping_address = $order_shipping_address; 65 65 66 66 $refundItems = []; -
viaads/trunk/readme.txt
r2858453 r2858930 4 4 Requires at least: 5.4 5 5 Tested up to: 6.1 6 Stable tag: 1.0.1 26 Stable tag: 1.0.13 7 7 Requires PHP: 7.0 8 8 License: GPLv3 -
viaads/trunk/sync.php
r2858453 r2858930 345 345 346 346 // Billing Address 347 /*$order_billing_address = new stdClass();347 $order_billing_address = new stdClass(); 348 348 $order_billing_address->first_name = $order->get_billing_first_name(); 349 349 $order_billing_address->last_name = $order->get_billing_last_name(); … … 355 355 $order_billing_address->phone_number = $order->get_billing_phone(); 356 356 $order_billing_address->email = $order->get_billing_email(); 357 $order_object->Billing_address = $order_billing_address; */357 $order_object->Billing_address = $order_billing_address; 358 358 359 359 360 360 // Shipping Address 361 /*$order_shipping_address = new stdClass();361 $order_shipping_address = new stdClass(); 362 362 $order_shipping_address->first_name = $order->get_shipping_first_name(); 363 363 $order_shipping_address->last_name = $order->get_shipping_last_name(); … … 369 369 $order_shipping_address->phone_number = $order->get_shipping_phone(); 370 370 $order_shipping_address->email = $order->get_billing_email(); 371 $order_object->Shipping_address = $order_shipping_address; */371 $order_object->Shipping_address = $order_shipping_address; 372 372 373 373 $refundItems = []; -
viaads/trunk/viaads.php
r2858453 r2858930 3 3 * Plugin Name: ViaAds 4 4 * Description: Plugin der muliggør forbindelsen til ViaAds / Plug-in enabling the connection to ViaAds. 5 * Version: 1.0.1 25 * Version: 1.0.13 6 6 * Author: ViaAds 7 7 * Author URI: https://www.viaads.dk/
Note: See TracChangeset
for help on using the changeset viewer.