Forum Replies Created

Viewing 15 replies - 1 through 15 (of 39 total)
  • I’m responding to this thread because I would like to be notified when a fix is released.

    Same here.

    My webserver is maxed out over the last month, showing hundreds of faults.

    Multiple large TEC SQL queries are the culprit.

    I’m using TEC Pro which uses 10-30 events (most recurring) per month on a low-moderate traffic website.

    Is there any strategy anyone can suggest to mitigate this?

    Typical query reproduced here: (this is a single query!!)

    SELECT SQL_CALC_FOUND_ROWS (MD9fC_tec_occurrences.occurrence_id + 10000000) as occurrence_id |
    FROM MD9fC_posts |
    JOIN MD9fC_tec_occurrences ON MD9fC_posts.ID = MD9fC_tec_occurrences.post_id |
    WHERE 1=1 AND MD9fC_posts.post_type = 'tribe_events' AND ((MD9fC_posts.post_status = 'publish'))AND MD9fC_tec_occurrences.occurrence_id IN ( |
    SELECT MD9fC_tec_occurrences.occurrence_id |
    FROM MD9fC_tec_occurrences |
    INNER JOIN MD9fC_tec_series_relationships ON MD9fC_tec_series_relationships.event_post_id = MD9fC_tec_occurrences.post_id |
    INNER JOIN ( |
    SELECT relationship.series_post_id, MAX(MD9fC_tec_occurrences.end_date) occurrence_date |
    FROM MD9fC_tec_occurrences |
    INNER JOIN MD9fC_tec_series_relationships as relationship ON relationship.event_post_id = MD9fC_tec_occurrences.post_id |
    WHERE CAST(MD9fC_tec_occurrences.end_date AS DATETIME) < '2023-07-15 00:00:00' | GROUP BY relationship.series_post_id | ) results_by_series ON results_by_series.series_post_id = MD9fC_tec_series_relationships.series_post_id AND results_by_series.occurrence_date = MD9fC_tec_occurrences.end_date | UNION DISTINCT | SELECT MD9fC_tec_occurrences.occurrence_id | FROM MD9fC_tec_occurrences | LEFT JOIN MD9fC_tec_series_relationships as relationship ON relationship.event_post_id = MD9fC_tec_occurrences.post_id | WHERE CAST(MD9fC_tec_occurrences.end_date AS DATETIME) < '2023-07-15 00:00:00' | AND relationship.event_post_id IS NULL | ) | GROUP BY MD9fC_tec_occurrences.occurrence_id | ORDER BY MD9fC_tec_occurrences.start_date DESC, MD9fC_tec_occurrences.duration DESC, MD9fC_posts.post_date ASC | LIMIT 600, 151 | SELECT (MD9fC_tec_occurrences.occurrence_id + 10000000) as occurrence_id | FROM MD9fC_posts | JOIN MD9fC_tec_occurrences ON MD9fC_posts.ID = MD9fC_tec_occurrences.post_id | WHERE 1=1 AND ( | CAST(MD9fC_tec_occurrences.start_date AS DATETIME) > '2023-09-15 23:59:59' |
    ) AND MD9fC_posts.post_type = 'tribe_events' AND ((MD9fC_posts.post_status = 'publish'))AND MD9fC_tec_occurrences.occurrence_id IN ( |
    SELECT MD9fC_tec_occurrences.occurrence_id |
    FROM MD9fC_tec_occurrences |
    INNER JOIN MD9fC_tec_series_relationships ON MD9fC_tec_series_relationships.event_post_id = MD9fC_tec_occurrences.post_id |
    INNER JOIN ( |
    SELECT relationship.series_post_id, MIN(MD9fC_tec_occurrences.start_date) occurrence_date |
    FROM MD9fC_tec_occurrences |
    INNER JOIN MD9fC_tec_series_relationships as relationship ON relationship.event_post_id = MD9fC_tec_occurrences.post_id |
    WHERE CAST(MD9fC_tec_occurrences.start_date AS DATETIME) > '2023-09-15 23:59:59' |
    GROUP BY relationship.series_post_id |
    ) results_by_series ON results_by_series.series_post_id = MD9fC_tec_series_relationships.series_post_id AND results_by_series.occurrence_date = MD9fC_tec_occurrences.start_date |
    UNION DISTINCT |
    SELECT MD9fC_tec_occurrences.occurrence_id |
    FROM MD9fC_tec_occurrences |
    LEFT JOIN MD9fC_tec_series_relationships as relationship ON relationship.event_post_id = MD9fC_tec_occurrences.post_id |
    WHERE CAST(MD9fC_tec_occurrences.start_date AS DATETIME) > '2023-09-15 23:59:59' |
    AND relationship.event_post_id IS NULL |
    ) |
    GROUP BY MD9fC_tec_occurrences.occurrence_id |
    ORDER BY MD9fC_tec_occurrences.start_date ASC, MD9fC_posts.post_date ASC |
    SELECT (MD9fC_tec_occurrences.occurrence_id + 10000000) as occurrence_id |
    FROM MD9fC_posts |
    JOIN MD9fC_tec_occurrences ON MD9fC_posts.ID = MD9fC_tec_occurrences.post_id |
    WHERE 1=1 AND MD9fC_posts.post_type = 'tribe_events' AND ((MD9fC_posts.post_status = 'publish'))AND MD9fC_tec_occurrences.occurrence_id IN ( |
    SELECT MD9fC_tec_occurrences.occurrence_id |
    FROM MD9fC_tec_occurrences |
    INNER JOIN MD9fC_tec_series_relationships ON MD9fC_tec_series_relationships.event_post_id = MD9fC_tec_occurrences.post_id |
    INNER JOIN ( |
    SELECT relationship.series_post_id, MAX(MD9fC_tec_occurrences.end_date) occurrence_date |
    FROM MD9fC_tec_occurrences |
    INNER JOIN MD9fC_tec_series_relationships as relationship ON relationship.event_post_id = MD9fC_tec_occurrences.post_id |
    WHERE CAST(MD9fC_tec_occurrences.end_date AS DATETIME) < '2023-07-16 00:00:00' |
    GROUP BY relationship.series_post_id |
    ) results_by_series ON results_by_series.series_post_id = MD9fC_tec_series_relationships.series_post_id AND results_by_series.occurrence_date = MD9fC_tec_occurrences.end_date |
    UNION DISTINCT |
    SELECT MD9fC_tec_occurrences.occurrence_id |
    FROM MD9fC_tec_occurrences |
    LEFT JOIN MD9fC_tec_series_relationships as relationship ON relationship.event_post_id = MD9fC_tec_occurrences.post_id |
    WHERE CAST(MD9fC_tec_occurrences.end_date AS DATETIME) < '2023-07-16 00:00:00' |
    AND relationship.event_post_id IS NULL |
    ) |
    GROUP BY MD9fC_tec_occurrences.occurrence_id |
    ORDER BY MD9fC_tec_occurrences.start_date DESC, MD9fC_tec_occurrences.duration DESC, MD9fC_posts.post_date DESC |
    LIMIT 600, 151

    Thread Starter jerrystewart99

    (@jerrystewart99)

    I agree with @satorius91, TEC settings (admin) screen causes a fatal error as they reported.

    This seems to be a different error than I first reported. This is not the tad_DI52_ServiceProvider problem now.

    I have TEC 6.1.2.2, Event Tickets 5.6.1.2 and Restrict Content Pro 3.5.34 (all latest version). I’ve deactivated ET and RCP. TEC now crashes all by itself. This does not appear to be a plugin clash problem like the previous error.

    My stack trace is:

    [26-Jun-2023 09:56:22 UTC] PHP Fatal error: Uncaught TEC\Common\Exceptions\Not_Bound_Exception: TEC\Common\StellarWP\Telemetry\Opt_In\Opt_In_Subscriber
    => Error while making TEC\Common\StellarWP\ContainerContract\ContainerInterface $container: parameter $container is not optional and its type (TEC\Common\StellarWP\ContainerContract\ContainerInterface) cannot be resolved to a concrete class. in C:\laragon\www\XXXXXXX\wp-content\plugins\event-tickets\common\src\Common\Contracts\Container.php:27
    Stack trace:

    0 C:\laragon\www\XXXXXXX\wp-content\plugins\event-tickets\common\src\Common\Telemetry\Telemetry.php(487): TEC\Common\Contracts\Container->get(‘TEC\Common\Stel…’)

    1 C:\laragon\www\XXXXXXX\wp-content\plugins\event-tickets\common\src\Common\Telemetry\Telemetry.php(166): TEC\Common\Telemetry\Telemetry->register_tec_telemetry_plugins()

    2 C:\laragon\www\XXXXXXX\wp-content\plugins\the-events-calendar\src\Events\Telemetry\Telemetry.php(90): TEC\Common\Telemetry\Telemetry->init()

    3 C:\laragon\www\XXXXXXX\wp-content\plugins\the in C:\laragon\www\XXXXXXX\wp-content\plugins\event-tickets\common\src\Common\Contracts\Container.php on line 27

    The last stable versions I have are from 22 April as follows:

    RCP 3.5.24.1, TEC 6.0.5, ET 5.5.4

    This is less than ideal

    I’m left wondering if IThemes or whoever runs the show these days actually has a QA department.

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Yes, I can confirm that today’s Event Tickets upgrade to 5.6.0.1 breaks my site with a fatal error also. I’ve reverted to 5.6.0 and it’s fine.

    The stack trace is:

    [21-Jun-2023 08:21:50 UTC] PHP Fatal error: Uncaught Error: Class ‘tad_DI52_ServiceProvider’ not found in C:\laragon\www\XXXXXXXX\wp-content\plugins\restrict-content-pro\core\includes\PUE\Provider.php:22
    Stack trace:

    0 C:\laragon\www\XXXXXXXX\wp-content\plugins\event-tickets\vendor\composer\ClassLoader.php(576): include()

    #1 C:\laragon\www\XXXXXXXX\wp-content\plugins\event-tickets\vendor\composer\ClassLoader.php(427): Composer\Autoload{closure}(‘C:\laragon\www\…’)

    #2 [internal function]: Composer\Autoload\ClassLoader->loadClass(‘RCP\PUE\Provide…’)

    #3 [internal function]: spl_autoload_call(‘RCP\PUE\Provide…’)

    #4 C:\laragon\www\XXXXXXXX\wp-content\plugins\event-tickets\common\vendor\vendor-prefixed\lucatume\di52\src\Builders\ClassBuilder.php(83): class_exists(‘RCP\PUE\Provide…’)

    #5 C:\laragon\www\XXXXXXXX\wp-content\plugins\event-tickets\common\vendor\vendor-prefixed\lucatume\di52\src\Builders\Resolver.php(233): TEC\Common\lucatume\DI52\Builders\ClassBuilder->__construct(‘RCP\PUE\Provide…’, Object(TEC\Common\luc in C:\laragon\www\XXXXXXXX\wp-content\plugins\restrict-content-pro\core\includes\PUE\Provider.php on line 22

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hi @d0153 Darian,

    That’s great, thanks. I can definitely work with that.

    • Jerry
    Thread Starter jerrystewart99

    (@jerrystewart99)

    Follow up: So, I’ve solved my initial problem but my question remains.. Where is the API defined?

    I’ve created a statement that seems to work by a mixture of looking at the examples given in the docs and a bit of trial and error.. as follows:

    $results = tribe_events()->where( ‘starts_after’, ‘now’ )
    ->where( ‘starts_before’, ‘+2 days’ )
    ->order_by( ‘event_date’ )
    ->order( ‘ASC’ )
    ->all();

    <rant>

    I guessed at the keyword ‘starts_before’. It seemed logical as there was a ‘starts_after’ in the documented example. Are there other useful keywords? where are they defined? I also guessed ‘now’ as it seemed logical.

    Why doesn’t where(‘end_date’, ‘<=’, ‘2023-02-16’) work?

    Why is it order_by( ‘event_date’ ) instead of order_by( ‘start_date’ ) which would seem more logical as start_date is a field in the returned ‘Event Object’ but event_date isn’t.

    When you chain where() clauses, it seems to default to a logical AND operation. What if you wanted a logical OR operation?

    So many questions! I’d really love to understand this API more as it is truly elegant and nice to use.

    </rant>

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hi again,

    As usual, I was overthinking it..

    I believe I have the answer.. at least it’s working for me. Perhaps this might help someone else

    I’ve uploaded a flag to ‘media’ and added the following code to a child theme functions.php file:

    add_filter( 'falang_predefined_languages', function( $languages ) {
    
      if ( !array_key_exists( 'mi_NZ', $languages ) ) {
    	
        $languages[ 'mi_NZ' ] = 
          array ( 'code' => 'mi',
                  'locale' => 'mi_NZ',
                  'name' => 'Māori',
                  'dir' => 'ltr',
                  'flag' => 'mi',
                  'facebook' => 'en_US' );
    
        return $languages;
      }
    } );
    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hi

    Thanks for your rapid response .. awesome ??

    Yes, you’re correct, I was overthinking. I’ve got the print formatting sorted now.

    Your docs imply that the print formatting css in Print-O-Matic will be deprecated, so I put my css in the ‘Theme Customizer->Additional CSS.. and thanks for the helpful link.

    I’m still having an issue with the tag shortcode option though.

    My aim is to have the printicon inline with previous text so I assumed that the Print-o-matic option tag=”span” would be exactly what I needed.

    I see from the logic in your code print-o-matic.php line 222-230 that the tag option is ignored if printicon and title are both set. I’m not sure why this is so… what if you wanted the icon and title all to appear inline?

    But the main problem is that, with Title removed and tag=”span” then the printicon enclosing container becomes span and therefore display:inline is the default. The result is that your css for the container, .pom-default for width and height are ignored.. ie. the Icon disappears entirely!

    My workaround is to add the following css so that width and height are honoured:
    .printomatic { display:inline-block; }

    So, either I have completely misunderstood the use of tag=”span”, which is entirely possible, or you have a wee buglet. In either case I think that some worked examples in your documentation of how to get inline icons would be very useful and time saving.

    Again, I really do appreciate your free plugin and I hope you treat my comments as helpful feedback.

    – Jerry

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hostinger has been unable to solve my problem…

    but I see that post SMTP now has a fallback (since v1.9.8)- the ability to set up a second delivery service if the first one fails. In my case the failures are irregular and the emails are generally non-critical, so I’ve set up the fallback service to be the same as the primary.

    A big thank you to postSMTP for a very useful feature.

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hi @champsupertramp

    I note that this issue is still broken in version 2.8.1

    I’m just wondering what the the status of this bug and when is it likely to get fixed.

    Thanks
    – Jerry

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hi @caparros07

    Before I go back to Hostinger again, can I ask if you are using postSMTP as your email plugin?
    What is the frequency of fails are you getting?

    thanks, Jerry

    Thread Starter jerrystewart99

    (@jerrystewart99)

    update: I’ve done a bit of digging and I believe I have a fix which may be useful to others.

    file: wp-content\plugins\breadcrumbs-divi-module\includes\modules\DiviBreadcrumbs\DiviBreadcrumbs.php

    Be careful of the exact filename and path because there are 2 files with the same name in different paths.

    line 43 AND line 62: replace
    'renderer' => 'et_pb_get_font_icon_list',
    with
    'renderer' => 'select_icon',

    The module appears to work fine and the icon selectors in the Divi builder still appear to work.. and YAY, no more deprecation errors in my log file.

    caveat emptor:
    – Please note that I haven’t done a full QA process on this fix.
    – If you modify code then your changes will be overwritten if the plugin is updated

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hi @battouly and thanks for your response.

    I have seen this page and can see that most of the information is editable. In the account representative section however, I see that the DOB is not editable. Is this an oversight by Stripe or is the account somehow still linked to me (the developer) when I want to hand it over to my client.

    Thanks, Jerry

    Thread Starter jerrystewart99

    (@jerrystewart99)

    Hi and thanks for your very prompt response.

    I am referring to within the WordPress dashboard (sorry for being ambiguous)

    I can see the order notes, and yes that is good information. I was hoping for a payments summary screen showing multiple orders .. a table, sort of like:
    Order, Payment Type, Payment method, Date expected to arrive in Bank etc

    I expect that I can get that from The Stripe dashboard, but it would be nice for my client if it was all available in one place. Perhaps you would consider this as a feature request?

    I tried out another plugin that included that sort of info but I abandoned it for other reasons (it was too annoying for words)

    I really like your plugin so far ??

    Thanks, Jerry

    Thread Starter jerrystewart99

    (@jerrystewart99)

    .. and here is the log
    There are copious php errors and warnings that CRBS generates that are not related to this issue as far as I can see.
    There is a lot of information, sorry.
    Is there anything in there that is likely to be causing problems?

    [30-Sep-2021 08:17:33 UTC] sendBooking (A) data=Array
    (
        [navigation_responsive] => 4
        [pickup_location_id] => 18
        [pickup_date] => 02-10-2021
        [pickup_time] => 07:30
        [return_location_id] => 18
        [return_date] => 03-10-2021
        [return_time] => 17:30
        [vehicle_passenger_count] => 1
        [vehicle_bag_count] => 1
        [vehicle_category] => 0
        [booking_extra_74_quantity] => 1
        [client_contact_detail_first_name] => jer
        [client_contact_detail_last_name] => stew
        [client_contact_detail_email_address] => [email protected]
        [client_contact_detail_phone_number] => 435
        [Address-on-GBI] => 
        [form_element_field_1647875DB702CBD80011E709D8D4579D] => 345
        [form_element_field_92F967BC2CAE3E57A3F928FA34A22D75] => 345
        [form_element_field_7F605E056B23ED4A4D19FA2E74249471] => 345
        [step] => 4
        [step_request] => 5
        [vehicle_id] => 428
        [payment_id] => 0
        [booking_extra_id] => 
        [booking_form_id] => 268
        [post_id] => 23
        [currency] => NZD
    )
    
    [30-Sep-2021 08:17:33 UTC] PHP Deprecated:  WP_User->id was called with an argument that is <strong>deprecated</strong> since version 2.1.0! Use <code>WP_User->ID</code> instead. in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-includes/functions.php on line 5495
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: client_sign_up_enable in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.WooCommerce.class.php on line 81
    [30-Sep-2021 08:17:33 UTC] status=pending
    [30-Sep-2021 08:17:33 UTC] sendBooking (B) order=WC_Order Object
    (
        [status_transition:protected] => 
        [data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => NZD
                [version] => 5.7.1
                [prices_include_tax] => 
                [date_created] => WC_DateTime Object
                    (
                        [utc_offset:protected] => 0
                        [date] => 2021-09-30 21:17:33.000000
                        [timezone_type] => 3
                        [timezone] => Pacific/Auckland
                    )
    
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 0
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => wc_order_6PPzhIzSupqAj
                [billing] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => 
                        [phone] => 
                    )
    
                [shipping] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 
                    )
    
                [payment_method] => 
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 114.23.250.238
                [customer_user_agent] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [items:protected] => Array
            (
            )
    
        [items_to_delete:protected] => Array
            (
            )
    
        [cache_group:protected] => orders
        [data_store_name:protected] => order
        [object_type:protected] => order
        [id:protected] => 1027
        [changes:protected] => Array
            (
                [billing] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [phone] => 435
                        [email] => [email protected]
                    )
    
                [shipping] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [phone] => 435
                    )
    
                [payment_method] => 0
            )
    
        [object_read:protected] => 1
        [extra_data:protected] => Array
            (
            )
    
        [default_data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => 
                [version] => 
                [prices_include_tax] => 
                [date_created] => 
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 0
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => 
                [billing] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => 
                        [phone] => 
                    )
    
                [shipping] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 
                    )
    
                [payment_method] => 
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 
                [customer_user_agent] => 
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [data_store:protected] => WC_Data_Store Object
            (
                [instance:WC_Data_Store:private] => WC_Order_Data_Store_CPT Object
                    (
                        [internal_meta_keys:protected] => Array
                            (
                                [0] => _customer_user
                                [1] => _order_key
                                [2] => _order_currency
                                [3] => _billing_first_name
                                [4] => _billing_last_name
                                [5] => _billing_company
                                [6] => _billing_address_1
                                [7] => _billing_address_2
                                [8] => _billing_city
                                [9] => _billing_state
                                [10] => _billing_postcode
                                [11] => _billing_country
                                [12] => _billing_email
                                [13] => _billing_phone
                                [14] => _shipping_first_name
                                [15] => _shipping_last_name
                                [16] => _shipping_company
                                [17] => _shipping_address_1
                                [18] => _shipping_address_2
                                [19] => _shipping_city
                                [20] => _shipping_state
                                [21] => _shipping_postcode
                                [22] => _shipping_country
                                [23] => _shipping_phone
                                [24] => _completed_date
                                [25] => _paid_date
                                [26] => _edit_lock
                                [27] => _edit_last
                                [28] => _cart_discount
                                [29] => _cart_discount_tax
                                [30] => _order_shipping
                                [31] => _order_shipping_tax
                                [32] => _order_tax
                                [33] => _order_total
                                [34] => _payment_method
                                [35] => _payment_method_title
                                [36] => _transaction_id
                                [37] => _customer_ip_address
                                [38] => _customer_user_agent
                                [39] => _created_via
                                [40] => _order_version
                                [41] => _prices_include_tax
                                [42] => _date_completed
                                [43] => _date_paid
                                [44] => _payment_tokens
                                [45] => _billing_address_index
                                [46] => _shipping_address_index
                                [47] => _recorded_sales
                                [48] => _recorded_coupon_usage_counts
                                [49] => _download_permissions_granted
                                [50] => _order_stock_reduced
                            )
    
                        [meta_type:protected] => post
                        [object_id_field_for_meta:protected] => 
                        [must_exist_meta_keys:protected] => Array
                            (
                            )
    
                    )
    
                [stores:WC_Data_Store:private] => Array
                    (
                        [coupon] => WC_Coupon_Data_Store_CPT
                        [customer] => WC_Customer_Data_Store
                        [customer-download] => WC_Customer_Download_Data_Store
                        [customer-download-log] => WC_Customer_Download_Log_Data_Store
                        [customer-session] => WC_Customer_Data_Store_Session
                        [order] => WC_Order_Data_Store_CPT
                        [order-refund] => WC_Order_Refund_Data_Store_CPT
                        [order-item] => WC_Order_Item_Data_Store
                        [order-item-coupon] => WC_Order_Item_Coupon_Data_Store
                        [order-item-fee] => WC_Order_Item_Fee_Data_Store
                        [order-item-product] => WC_Order_Item_Product_Data_Store
                        [order-item-shipping] => WC_Order_Item_Shipping_Data_Store
                        [order-item-tax] => WC_Order_Item_Tax_Data_Store
                        [payment-token] => WC_Payment_Token_Data_Store
                        [product] => WC_Product_Data_Store_CPT
                        [product-grouped] => WC_Product_Grouped_Data_Store_CPT
                        [product-variable] => WC_Product_Variable_Data_Store_CPT
                        [product-variation] => WC_Product_Variation_Data_Store_CPT
                        [shipping-zone] => WC_Shipping_Zone_Data_Store
                        [webhook] => WC_Webhook_Data_Store
                        [report-revenue-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-orders] => Automattic\WooCommerce\Admin\API\Reports\Orders\DataStore
                        [report-orders-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-products] => Automattic\WooCommerce\Admin\API\Reports\Products\DataStore
                        [report-variations] => Automattic\WooCommerce\Admin\API\Reports\Variations\DataStore
                        [report-products-stats] => Automattic\WooCommerce\Admin\API\Reports\Products\Stats\DataStore
                        [report-variations-stats] => Automattic\WooCommerce\Admin\API\Reports\Variations\Stats\DataStore
                        [report-categories] => Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore
                        [report-taxes] => Automattic\WooCommerce\Admin\API\Reports\Taxes\DataStore
                        [report-taxes-stats] => Automattic\WooCommerce\Admin\API\Reports\Taxes\Stats\DataStore
                        [report-coupons] => Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore
                        [report-coupons-stats] => Automattic\WooCommerce\Admin\API\Reports\Coupons\Stats\DataStore
                        [report-downloads] => Automattic\WooCommerce\Admin\API\Reports\Downloads\DataStore
                        [report-downloads-stats] => Automattic\WooCommerce\Admin\API\Reports\Downloads\Stats\DataStore
                        [admin-note] => Automattic\WooCommerce\Admin\Notes\DataStore
                        [report-customers] => Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore
                        [report-customers-stats] => Automattic\WooCommerce\Admin\API\Reports\Customers\Stats\DataStore
                        [report-stock-stats] => Automattic\WooCommerce\Admin\API\Reports\Stock\Stats\DataStore
                        [product-tb-placeholder] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                        [product-tb-placeholder-variation] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                    )
    
                [current_class_name:WC_Data_Store:private] => WC_Order_Data_Store_CPT
                [object_type:WC_Data_Store:private] => order
            )
    
        [meta_data:protected] => 
    )
    
    [30-Sep-2021 08:17:33 UTC] sendBooking (C) order=WC_Order Object
    (
        [status_transition:protected] => 
        [data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => NZD
                [version] => 5.7.1
                [prices_include_tax] => 
                [date_created] => WC_DateTime Object
                    (
                        [utc_offset:protected] => 0
                        [date] => 2021-09-30 21:17:33.000000
                        [timezone_type] => 3
                        [timezone] => Pacific/Auckland
                    )
    
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 110.00
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => wc_order_6PPzhIzSupqAj
                [billing] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => [email protected]
                        [phone] => 435
                    )
    
                [shipping] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 435
                    )
    
                [payment_method] => 0
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 114.23.250.238
                [customer_user_agent] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [items:protected] => Array
            (
                [line_items] => Array
                    (
                        [99] => WC_Order_Item_Product Object
                            (
                                [extra_data:protected] => Array
                                    (
                                        [product_id] => 0
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 0
                                        [subtotal_tax] => 0
                                        [total] => 0
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                                [total] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [data:protected] => Array
                                    (
                                        [order_id] => 1027
                                        [name] => Rental fee per day
                                        [product_id] => 1028
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 110
                                        [subtotal_tax] => 0
                                        [total] => 110
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [total] => Array
                                                    (
                                                    )
    
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [cache_group:protected] => order-items
                                [meta_type:protected] => order_item
                                [object_type:protected] => order_item
                                [id:protected] => 99
                                [changes:protected] => Array
                                    (
                                    )
    
                                [object_read:protected] => 1
                                [default_data:protected] => Array
                                    (
                                        [order_id] => 0
                                        [name] => 
                                        [product_id] => 0
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 0
                                        [subtotal_tax] => 0
                                        [total] => 0
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                                [total] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [data_store:protected] => WC_Data_Store Object
                                    (
                                        [instance:WC_Data_Store:private] => WC_Order_Item_Product_Data_Store Object
                                            (
                                                [internal_meta_keys:protected] => Array
                                                    (
                                                        [0] => _order_id
                                                        [1] => _name
                                                        [2] => _product_id
                                                        [3] => _variation_id
                                                        [4] => _quantity
                                                        [5] => _tax_class
                                                        [6] => _subtotal
                                                        [7] => _subtotal_tax
                                                        [8] => _total
                                                        [9] => _total_tax
                                                        [10] => _taxes
                                                        [11] => _product_id
                                                        [12] => _variation_id
                                                        [13] => _qty
                                                        [14] => _tax_class
                                                        [15] => _line_subtotal
                                                        [16] => _line_subtotal_tax
                                                        [17] => _line_total
                                                        [18] => _line_tax
                                                        [19] => _line_tax_data
                                                    )
    
                                                [meta_type:protected] => order_item
                                                [object_id_field_for_meta:protected] => order_item_id
                                                [must_exist_meta_keys:protected] => Array
                                                    (
                                                    )
    
                                            )
    
                                        [stores:WC_Data_Store:private] => Array
                                            (
                                                [coupon] => WC_Coupon_Data_Store_CPT
                                                [customer] => WC_Customer_Data_Store
                                                [customer-download] => WC_Customer_Download_Data_Store
                                                [customer-download-log] => WC_Customer_Download_Log_Data_Store
                                                [customer-session] => WC_Customer_Data_Store_Session
                                                [order] => WC_Order_Data_Store_CPT
                                                [order-refund] => WC_Order_Refund_Data_Store_CPT
                                                [order-item] => WC_Order_Item_Data_Store
                                                [order-item-coupon] => WC_Order_Item_Coupon_Data_Store
                                                [order-item-fee] => WC_Order_Item_Fee_Data_Store
                                                [order-item-product] => WC_Order_Item_Product_Data_Store
                                                [order-item-shipping] => WC_Order_Item_Shipping_Data_Store
                                                [order-item-tax] => WC_Order_Item_Tax_Data_Store
                                                [payment-token] => WC_Payment_Token_Data_Store
                                                [product] => WC_Product_Data_Store_CPT
                                                [product-grouped] => WC_Product_Grouped_Data_Store_CPT
                                                [product-variable] => WC_Product_Variable_Data_Store_CPT
                                                [product-variation] => WC_Product_Variation_Data_Store_CPT
                                                [shipping-zone] => WC_Shipping_Zone_Data_Store
                                                [webhook] => WC_Webhook_Data_Store
                                                [report-revenue-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                                                [report-orders] => Automattic\WooCommerce\Admin\API\Reports\Orders\DataStore
                                                [report-orders-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                                                [report-products] => Automattic\WooCommerce\Admin\API\Reports\Products\DataStore
                                                [report-variations] => Automattic\WooCommerce\Admin\API\Reports\Variations\DataStore
                                                [report-products-stats] => Automattic\WooCommerce\Admin\API\Reports\Products\Stats\DataStore
                                                [report-variations-stats] => Automattic\WooCommerce\Admin\API\Reports\Variations\Stats\DataStore
                                                [report-categories] => Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore
                                                [report-taxes] => Automattic\WooCommerce\Admin\API\Reports\Taxes\DataStore
                                                [report-taxes-stats] => Automattic\WooCommerce\Admin\API\Reports\Taxes\Stats\DataStore
                                                [report-coupons] => Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore
                                                [report-coupons-stats] => Automattic\WooCommerce\Admin\API\Reports\Coupons\Stats\DataStore
                                                [report-downloads] => Automattic\WooCommerce\Admin\API\Reports\Downloads\DataStore
                                                [report-downloads-stats] => Automattic\WooCommerce\Admin\API\Reports\Downloads\Stats\DataStore
                                                [admin-note] => Automattic\WooCommerce\Admin\Notes\DataStore
                                                [report-customers] => Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore
                                                [report-customers-stats] => Automattic\WooCommerce\Admin\API\Reports\Customers\Stats\DataStore
                                                [report-stock-stats] => Automattic\WooCommerce\Admin\API\Reports\Stock\Stats\DataStore
                                                [product-tb-placeholder] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                                                [product-tb-placeholder-variation] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                                            )
    
                                        [current_class_name:WC_Data_Store:private] => WC_Order_Item_Product_Data_Store
                                        [object_type:WC_Data_Store:private] => order-item-product
                                    )
    
                                [meta_data:protected] => Array
                                    (
                                    )
    
                            )
    
                    )
    
                [shipping_lines] => Array
                    (
                    )
    
                [fee_lines] => Array
                    (
                    )
    
                [tax_lines] => Array
                    (
                    )
    
            )
    
        [items_to_delete:protected] => Array
            (
            )
    
        [cache_group:protected] => orders
        [data_store_name:protected] => order
        [object_type:protected] => order
        [id:protected] => 1027
        [changes:protected] => Array
            (
            )
    
        [object_read:protected] => 1
        [extra_data:protected] => Array
            (
            )
    
        [default_data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => 
                [version] => 
                [prices_include_tax] => 
                [date_created] => 
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 0
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => 
                [billing] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => 
                        [phone] => 
                    )
    
                [shipping] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 
                    )
    
                [payment_method] => 
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 
                [customer_user_agent] => 
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [data_store:protected] => WC_Data_Store Object
            (
                [instance:WC_Data_Store:private] => WC_Order_Data_Store_CPT Object
                    (
                        [internal_meta_keys:protected] => Array
                            (
                                [0] => _parent_id
                                [1] => _status
                                [2] => _currency
                                [3] => _version
                                [4] => _prices_include_tax
                                [5] => _date_created
                                [6] => _date_modified
                                [7] => _discount_total
                                [8] => _discount_tax
                                [9] => _shipping_total
                                [10] => _shipping_tax
                                [11] => _cart_tax
                                [12] => _total
                                [13] => _total_tax
                                [14] => _customer_id
                                [15] => _order_key
                                [16] => _billing
                                [17] => _shipping
                                [18] => _payment_method
                                [19] => _payment_method_title
                                [20] => _transaction_id
                                [21] => _customer_ip_address
                                [22] => _customer_user_agent
                                [23] => _created_via
                                [24] => _customer_note
                                [25] => _date_completed
                                [26] => _date_paid
                                [27] => _cart_hash
                                [28] => _customer_user
                                [29] => _order_key
                                [30] => _order_currency
                                [31] => _billing_first_name
                                [32] => _billing_last_name
                                [33] => _billing_company
                                [34] => _billing_address_1
                                [35] => _billing_address_2
                                [36] => _billing_city
                                [37] => _billing_state
                                [38] => _billing_postcode
                                [39] => _billing_country
                                [40] => _billing_email
                                [41] => _billing_phone
                                [42] => _shipping_first_name
                                [43] => _shipping_last_name
                                [44] => _shipping_company
                                [45] => _shipping_address_1
                                [46] => _shipping_address_2
                                [47] => _shipping_city
                                [48] => _shipping_state
                                [49] => _shipping_postcode
                                [50] => _shipping_country
                                [51] => _shipping_phone
                                [52] => _completed_date
                                [53] => _paid_date
                                [54] => _edit_lock
                                [55] => _edit_last
                                [56] => _cart_discount
                                [57] => _cart_discount_tax
                                [58] => _order_shipping
                                [59] => _order_shipping_tax
                                [60] => _order_tax
                                [61] => _order_total
                                [62] => _payment_method
                                [63] => _payment_method_title
                                [64] => _transaction_id
                                [65] => _customer_ip_address
                                [66] => _customer_user_agent
                                [67] => _created_via
                                [68] => _order_version
                                [69] => _prices_include_tax
                                [70] => _date_completed
                                [71] => _date_paid
                                [72] => _payment_tokens
                                [73] => _billing_address_index
                                [74] => _shipping_address_index
                                [75] => _recorded_sales
                                [76] => _recorded_coupon_usage_counts
                                [77] => _download_permissions_granted
                                [78] => _order_stock_reduced
                            )
    
                        [meta_type:protected] => post
                        [object_id_field_for_meta:protected] => 
                        [must_exist_meta_keys:protected] => Array
                            (
                            )
    
                    )
    
                [stores:WC_Data_Store:private] => Array
                    (
                        [coupon] => WC_Coupon_Data_Store_CPT
                        [customer] => WC_Customer_Data_Store
                        [customer-download] => WC_Customer_Download_Data_Store
                        [customer-download-log] => WC_Customer_Download_Log_Data_Store
                        [customer-session] => WC_Customer_Data_Store_Session
                        [order] => WC_Order_Data_Store_CPT
                        [order-refund] => WC_Order_Refund_Data_Store_CPT
                        [order-item] => WC_Order_Item_Data_Store
                        [order-item-coupon] => WC_Order_Item_Coupon_Data_Store
                        [order-item-fee] => WC_Order_Item_Fee_Data_Store
                        [order-item-product] => WC_Order_Item_Product_Data_Store
                        [order-item-shipping] => WC_Order_Item_Shipping_Data_Store
                        [order-item-tax] => WC_Order_Item_Tax_Data_Store
                        [payment-token] => WC_Payment_Token_Data_Store
                        [product] => WC_Product_Data_Store_CPT
                        [product-grouped] => WC_Product_Grouped_Data_Store_CPT
                        [product-variable] => WC_Product_Variable_Data_Store_CPT
                        [product-variation] => WC_Product_Variation_Data_Store_CPT
                        [shipping-zone] => WC_Shipping_Zone_Data_Store
                        [webhook] => WC_Webhook_Data_Store
                        [report-revenue-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-orders] => Automattic\WooCommerce\Admin\API\Reports\Orders\DataStore
                        [report-orders-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-products] => Automattic\WooCommerce\Admin\API\Reports\Products\DataStore
                        [report-variations] => Automattic\WooCommerce\Admin\API\Reports\Variations\DataStore
                        [report-products-stats] => Automattic\WooCommerce\Admin\API\Reports\Products\Stats\DataStore
                        [report-variations-stats] => Automattic\WooCommerce\Admin\API\Reports\Variations\Stats\DataStore
                        [report-categories] => Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore
                        [report-taxes] => Automattic\WooCommerce\Admin\API\Reports\Taxes\DataStore
                        [report-taxes-stats] => Automattic\WooCommerce\Admin\API\Reports\Taxes\Stats\DataStore
                        [report-coupons] => Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore
                        [report-coupons-stats] => Automattic\WooCommerce\Admin\API\Reports\Coupons\Stats\DataStore
                        [report-downloads] => Automattic\WooCommerce\Admin\API\Reports\Downloads\DataStore
                        [report-downloads-stats] => Automattic\WooCommerce\Admin\API\Reports\Downloads\Stats\DataStore
                        [admin-note] => Automattic\WooCommerce\Admin\Notes\DataStore
                        [report-customers] => Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore
                        [report-customers-stats] => Automattic\WooCommerce\Admin\API\Reports\Customers\Stats\DataStore
                        [report-stock-stats] => Automattic\WooCommerce\Admin\API\Reports\Stock\Stats\DataStore
                        [product-tb-placeholder] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                        [product-tb-placeholder-variation] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                    )
    
                [current_class_name:WC_Data_Store:private] => WC_Order_Data_Store_CPT
                [object_type:WC_Data_Store:private] => order
            )
    
        [meta_data:protected] => Array
            (
                [0] => WC_Meta_Data Object
                    (
                        [current_data:protected] => Array
                            (
                                [id] => 20467
                                [key] => _shipping_email
                                [value] => [email protected]
                            )
    
                        [data:protected] => Array
                            (
                                [id] => 20467
                                [key] => _shipping_email
                                [value] => [email protected]
                            )
    
                    )
    
                [1] => WC_Meta_Data Object
                    (
                        [current_data:protected] => Array
                            (
                                [id] => 20468
                                [key] => crbs_booking_id
                                [value] => 1026
                            )
    
                        [data:protected] => Array
                            (
                                [id] => 20468
                                [key] => crbs_booking_id
                                [value] => 1026
                            )
    
                    )
    
            )
    
    )
    
    [30-Sep-2021 08:17:33 UTC] sendBooking (D) order=WC_Order Object
    (
        [status_transition:protected] => 
        [data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => NZD
                [version] => 5.7.1
                [prices_include_tax] => 
                [date_created] => WC_DateTime Object
                    (
                        [utc_offset:protected] => 0
                        [date] => 2021-09-30 21:17:33.000000
                        [timezone_type] => 3
                        [timezone] => Pacific/Auckland
                    )
    
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 110.00
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => wc_order_6PPzhIzSupqAj
                [billing] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => [email protected]
                        [phone] => 435
                    )
    
                [shipping] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 435
                    )
    
                [payment_method] => 0
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 114.23.250.238
                [customer_user_agent] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [items:protected] => Array
            (
                [line_items] => Array
                    (
                        [99] => WC_Order_Item_Product Object
                            (
                                [extra_data:protected] => Array
                                    (
                                        [product_id] => 0
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 0
                                        [subtotal_tax] => 0
                                        [total] => 0
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                                [total] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [data:protected] => Array
                                    (
                                        [order_id] => 1027
                                        [name] => Rental fee per day
                                        [product_id] => 1028
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 110
                                        [subtotal_tax] => 0
                                        [total] => 110
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [total] => Array
                                                    (
                                                    )
    
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [cache_group:protected] => order-items
                                [meta_type:protected] => order_item
                                [object_type:protected] => order_item
                                [id:protected] => 99
                                [changes:protected] => Array
                                    (
                                    )
    
                                [object_read:protected] => 1
                                [default_data:protected] => Array
                                    (
                                        [order_id] => 0
                                        [name] => 
                                        [product_id] => 0
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 0
                                        [subtotal_tax] => 0
                                        [total] => 0
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                                [total] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [data_store:protected] => WC_Data_Store Object
                                    (
                                        [instance:WC_Data_Store:private] => WC_Order_Item_Product_Data_Store Object
                                            (
                                                [internal_meta_keys:protected] => Array
                                                    (
                                                        [0] => _order_id
                                                        [1] => _name
                                                        [2] => _product_id
                                                        [3] => _variation_id
                                                        [4] => _quantity
                                                        [5] => _tax_class
                                                        [6] => _subtotal
                                                        [7] => _subtotal_tax
                                                        [8] => _total
                                                        [9] => _total_tax
                                                        [10] => _taxes
                                                        [11] => _product_id
                                                        [12] => _variation_id
                                                        [13] => _qty
                                                        [14] => _tax_class
                                                        [15] => _line_subtotal
                                                        [16] => _line_subtotal_tax
                                                        [17] => _line_total
                                                        [18] => _line_tax
                                                        [19] => _line_tax_data
                                                    )
    
                                                [meta_type:protected] => order_item
                                                [object_id_field_for_meta:protected] => order_item_id
                                                [must_exist_meta_keys:protected] => Array
                                                    (
                                                    )
    
                                            )
    
                                        [stores:WC_Data_Store:private] => Array
                                            (
                                                [coupon] => WC_Coupon_Data_Store_CPT
                                                [customer] => WC_Customer_Data_Store
                                                [customer-download] => WC_Customer_Download_Data_Store
                                                [customer-download-log] => WC_Customer_Download_Log_Data_Store
                                                [customer-session] => WC_Customer_Data_Store_Session
                                                [order] => WC_Order_Data_Store_CPT
                                                [order-refund] => WC_Order_Refund_Data_Store_CPT
                                                [order-item] => WC_Order_Item_Data_Store
                                                [order-item-coupon] => WC_Order_Item_Coupon_Data_Store
                                                [order-item-fee] => WC_Order_Item_Fee_Data_Store
                                                [order-item-product] => WC_Order_Item_Product_Data_Store
                                                [order-item-shipping] => WC_Order_Item_Shipping_Data_Store
                                                [order-item-tax] => WC_Order_Item_Tax_Data_Store
                                                [payment-token] => WC_Payment_Token_Data_Store
                                                [product] => WC_Product_Data_Store_CPT
                                                [product-grouped] => WC_Product_Grouped_Data_Store_CPT
                                                [product-variable] => WC_Product_Variable_Data_Store_CPT
                                                [product-variation] => WC_Product_Variation_Data_Store_CPT
                                                [shipping-zone] => WC_Shipping_Zone_Data_Store
                                                [webhook] => WC_Webhook_Data_Store
                                                [report-revenue-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                                                [report-orders] => Automattic\WooCommerce\Admin\API\Reports\Orders\DataStore
                                                [report-orders-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                                                [report-products] => Automattic\WooCommerce\Admin\API\Reports\Products\DataStore
                                                [report-variations] => Automattic\WooCommerce\Admin\API\Reports\Variations\DataStore
                                                [report-products-stats] => Automattic\WooCommerce\Admin\API\Reports\Products\Stats\DataStore
                                                [report-variations-stats] => Automattic\WooCommerce\Admin\API\Reports\Variations\Stats\DataStore
                                                [report-categories] => Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore
                                                [report-taxes] => Automattic\WooCommerce\Admin\API\Reports\Taxes\DataStore
                                                [report-taxes-stats] => Automattic\WooCommerce\Admin\API\Reports\Taxes\Stats\DataStore
                                                [report-coupons] => Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore
                                                [report-coupons-stats] => Automattic\WooCommerce\Admin\API\Reports\Coupons\Stats\DataStore
                                                [report-downloads] => Automattic\WooCommerce\Admin\API\Reports\Downloads\DataStore
                                                [report-downloads-stats] => Automattic\WooCommerce\Admin\API\Reports\Downloads\Stats\DataStore
                                                [admin-note] => Automattic\WooCommerce\Admin\Notes\DataStore
                                                [report-customers] => Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore
                                                [report-customers-stats] => Automattic\WooCommerce\Admin\API\Reports\Customers\Stats\DataStore
                                                [report-stock-stats] => Automattic\WooCommerce\Admin\API\Reports\Stock\Stats\DataStore
                                                [product-tb-placeholder] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                                                [product-tb-placeholder-variation] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                                            )
    
                                        [current_class_name:WC_Data_Store:private] => WC_Order_Item_Product_Data_Store
                                        [object_type:WC_Data_Store:private] => order-item-product
                                    )
    
                                [meta_data:protected] => Array
                                    (
                                    )
    
                            )
    
                    )
    
                [shipping_lines] => Array
                    (
                    )
    
                [fee_lines] => Array
                    (
                    )
    
                [tax_lines] => Array
                    (
                    )
    
            )
    
        [items_to_delete:protected] => Array
            (
            )
    
        [cache_group:protected] => orders
        [data_store_name:protected] => order
        [object_type:protected] => order
        [id:protected] => 1027
        [changes:protected] => Array
            (
            )
    
        [object_read:protected] => 1
        [extra_data:protected] => Array
            (
            )
    
        [default_data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => 
                [version] => 
                [prices_include_tax] => 
                [date_created] => 
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 0
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => 
                [billing] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => 
                        [phone] => 
                    )
    
                [shipping] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 
                    )
    
                [payment_method] => 
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 
                [customer_user_agent] => 
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [data_store:protected] => WC_Data_Store Object
            (
                [instance:WC_Data_Store:private] => WC_Order_Data_Store_CPT Object
                    (
                        [internal_meta_keys:protected] => Array
                            (
                                [0] => _parent_id
                                [1] => _status
                                [2] => _currency
                                [3] => _version
                                [4] => _prices_include_tax
                                [5] => _date_created
                                [6] => _date_modified
                                [7] => _discount_total
                                [8] => _discount_tax
                                [9] => _shipping_total
                                [10] => _shipping_tax
                                [11] => _cart_tax
                                [12] => _total
                                [13] => _total_tax
                                [14] => _customer_id
                                [15] => _order_key
                                [16] => _billing
                                [17] => _shipping
                                [18] => _payment_method
                                [19] => _payment_method_title
                                [20] => _transaction_id
                                [21] => _customer_ip_address
                                [22] => _customer_user_agent
                                [23] => _created_via
                                [24] => _customer_note
                                [25] => _date_completed
                                [26] => _date_paid
                                [27] => _cart_hash
                                [28] => _customer_user
                                [29] => _order_key
                                [30] => _order_currency
                                [31] => _billing_first_name
                                [32] => _billing_last_name
                                [33] => _billing_company
                                [34] => _billing_address_1
                                [35] => _billing_address_2
                                [36] => _billing_city
                                [37] => _billing_state
                                [38] => _billing_postcode
                                [39] => _billing_country
                                [40] => _billing_email
                                [41] => _billing_phone
                                [42] => _shipping_first_name
                                [43] => _shipping_last_name
                                [44] => _shipping_company
                                [45] => _shipping_address_1
                                [46] => _shipping_address_2
                                [47] => _shipping_city
                                [48] => _shipping_state
                                [49] => _shipping_postcode
                                [50] => _shipping_country
                                [51] => _shipping_phone
                                [52] => _completed_date
                                [53] => _paid_date
                                [54] => _edit_lock
                                [55] => _edit_last
                                [56] => _cart_discount
                                [57] => _cart_discount_tax
                                [58] => _order_shipping
                                [59] => _order_shipping_tax
                                [60] => _order_tax
                                [61] => _order_total
                                [62] => _payment_method
                                [63] => _payment_method_title
                                [64] => _transaction_id
                                [65] => _customer_ip_address
                                [66] => _customer_user_agent
                                [67] => _created_via
                                [68] => _order_version
                                [69] => _prices_include_tax
                                [70] => _date_completed
                                [71] => _date_paid
                                [72] => _payment_tokens
                                [73] => _billing_address_index
                                [74] => _shipping_address_index
                                [75] => _recorded_sales
                                [76] => _recorded_coupon_usage_counts
                                [77] => _download_permissions_granted
                                [78] => _order_stock_reduced
                            )
    
                        [meta_type:protected] => post
                        [object_id_field_for_meta:protected] => 
                        [must_exist_meta_keys:protected] => Array
                            (
                            )
    
                    )
    
                [stores:WC_Data_Store:private] => Array
                    (
                        [coupon] => WC_Coupon_Data_Store_CPT
                        [customer] => WC_Customer_Data_Store
                        [customer-download] => WC_Customer_Download_Data_Store
                        [customer-download-log] => WC_Customer_Download_Log_Data_Store
                        [customer-session] => WC_Customer_Data_Store_Session
                        [order] => WC_Order_Data_Store_CPT
                        [order-refund] => WC_Order_Refund_Data_Store_CPT
                        [order-item] => WC_Order_Item_Data_Store
                        [order-item-coupon] => WC_Order_Item_Coupon_Data_Store
                        [order-item-fee] => WC_Order_Item_Fee_Data_Store
                        [order-item-product] => WC_Order_Item_Product_Data_Store
                        [order-item-shipping] => WC_Order_Item_Shipping_Data_Store
                        [order-item-tax] => WC_Order_Item_Tax_Data_Store
                        [payment-token] => WC_Payment_Token_Data_Store
                        [product] => WC_Product_Data_Store_CPT
                        [product-grouped] => WC_Product_Grouped_Data_Store_CPT
                        [product-variable] => WC_Product_Variable_Data_Store_CPT
                        [product-variation] => WC_Product_Variation_Data_Store_CPT
                        [shipping-zone] => WC_Shipping_Zone_Data_Store
                        [webhook] => WC_Webhook_Data_Store
                        [report-revenue-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-orders] => Automattic\WooCommerce\Admin\API\Reports\Orders\DataStore
                        [report-orders-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-products] => Automattic\WooCommerce\Admin\API\Reports\Products\DataStore
                        [report-variations] => Automattic\WooCommerce\Admin\API\Reports\Variations\DataStore
                        [report-products-stats] => Automattic\WooCommerce\Admin\API\Reports\Products\Stats\DataStore
                        [report-variations-stats] => Automattic\WooCommerce\Admin\API\Reports\Variations\Stats\DataStore
                        [report-categories] => Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore
                        [report-taxes] => Automattic\WooCommerce\Admin\API\Reports\Taxes\DataStore
                        [report-taxes-stats] => Automattic\WooCommerce\Admin\API\Reports\Taxes\Stats\DataStore
                        [report-coupons] => Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore
                        [report-coupons-stats] => Automattic\WooCommerce\Admin\API\Reports\Coupons\Stats\DataStore
                        [report-downloads] => Automattic\WooCommerce\Admin\API\Reports\Downloads\DataStore
                        [report-downloads-stats] => Automattic\WooCommerce\Admin\API\Reports\Downloads\Stats\DataStore
                        [admin-note] => Automattic\WooCommerce\Admin\Notes\DataStore
                        [report-customers] => Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore
                        [report-customers-stats] => Automattic\WooCommerce\Admin\API\Reports\Customers\Stats\DataStore
                        [report-stock-stats] => Automattic\WooCommerce\Admin\API\Reports\Stock\Stats\DataStore
                        [product-tb-placeholder] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                        [product-tb-placeholder-variation] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                    )
    
                [current_class_name:WC_Data_Store:private] => WC_Order_Data_Store_CPT
                [object_type:WC_Data_Store:private] => order
            )
    
        [meta_data:protected] => Array
            (
                [0] => WC_Meta_Data Object
                    (
                        [current_data:protected] => Array
                            (
                                [id] => 20467
                                [key] => _shipping_email
                                [value] => [email protected]
                            )
    
                        [data:protected] => Array
                            (
                                [id] => 20467
                                [key] => _shipping_email
                                [value] => [email protected]
                            )
    
                    )
    
                [1] => WC_Meta_Data Object
                    (
                        [current_data:protected] => Array
                            (
                                [id] => 20468
                                [key] => crbs_booking_id
                                [value] => 1026
                            )
    
                        [data:protected] => Array
                            (
                                [id] => 20468
                                [key] => crbs_booking_id
                                [value] => 1026
                            )
    
                    )
    
            )
    
    )
    
    [30-Sep-2021 08:17:33 UTC] sendBooking (E) order=WC_Order Object
    (
        [status_transition:protected] => 
        [data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => NZD
                [version] => 5.7.1
                [prices_include_tax] => 
                [date_created] => WC_DateTime Object
                    (
                        [utc_offset:protected] => 0
                        [date] => 2021-09-30 21:17:33.000000
                        [timezone_type] => 3
                        [timezone] => Pacific/Auckland
                    )
    
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 110.00
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => wc_order_6PPzhIzSupqAj
                [billing] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => [email protected]
                        [phone] => 435
                    )
    
                [shipping] => Array
                    (
                        [first_name] => jer
                        [last_name] => stew
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 435
                    )
    
                [payment_method] => 0
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 114.23.250.238
                [customer_user_agent] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [items:protected] => Array
            (
                [line_items] => Array
                    (
                        [99] => WC_Order_Item_Product Object
                            (
                                [extra_data:protected] => Array
                                    (
                                        [product_id] => 0
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 0
                                        [subtotal_tax] => 0
                                        [total] => 0
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                                [total] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [data:protected] => Array
                                    (
                                        [order_id] => 1027
                                        [name] => Rental fee per day
                                        [product_id] => 1028
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 110
                                        [subtotal_tax] => 0
                                        [total] => 110
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [total] => Array
                                                    (
                                                    )
    
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [cache_group:protected] => order-items
                                [meta_type:protected] => order_item
                                [object_type:protected] => order_item
                                [id:protected] => 99
                                [changes:protected] => Array
                                    (
                                    )
    
                                [object_read:protected] => 1
                                [default_data:protected] => Array
                                    (
                                        [order_id] => 0
                                        [name] => 
                                        [product_id] => 0
                                        [variation_id] => 0
                                        [quantity] => 1
                                        [tax_class] => 
                                        [subtotal] => 0
                                        [subtotal_tax] => 0
                                        [total] => 0
                                        [total_tax] => 0
                                        [taxes] => Array
                                            (
                                                [subtotal] => Array
                                                    (
                                                    )
    
                                                [total] => Array
                                                    (
                                                    )
    
                                            )
    
                                    )
    
                                [data_store:protected] => WC_Data_Store Object
                                    (
                                        [instance:WC_Data_Store:private] => WC_Order_Item_Product_Data_Store Object
                                            (
                                                [internal_meta_keys:protected] => Array
                                                    (
                                                        [0] => _order_id
                                                        [1] => _name
                                                        [2] => _product_id
                                                        [3] => _variation_id
                                                        [4] => _quantity
                                                        [5] => _tax_class
                                                        [6] => _subtotal
                                                        [7] => _subtotal_tax
                                                        [8] => _total
                                                        [9] => _total_tax
                                                        [10] => _taxes
                                                        [11] => _product_id
                                                        [12] => _variation_id
                                                        [13] => _qty
                                                        [14] => _tax_class
                                                        [15] => _line_subtotal
                                                        [16] => _line_subtotal_tax
                                                        [17] => _line_total
                                                        [18] => _line_tax
                                                        [19] => _line_tax_data
                                                    )
    
                                                [meta_type:protected] => order_item
                                                [object_id_field_for_meta:protected] => order_item_id
                                                [must_exist_meta_keys:protected] => Array
                                                    (
                                                    )
    
                                            )
    
                                        [stores:WC_Data_Store:private] => Array
                                            (
                                                [coupon] => WC_Coupon_Data_Store_CPT
                                                [customer] => WC_Customer_Data_Store
                                                [customer-download] => WC_Customer_Download_Data_Store
                                                [customer-download-log] => WC_Customer_Download_Log_Data_Store
                                                [customer-session] => WC_Customer_Data_Store_Session
                                                [order] => WC_Order_Data_Store_CPT
                                                [order-refund] => WC_Order_Refund_Data_Store_CPT
                                                [order-item] => WC_Order_Item_Data_Store
                                                [order-item-coupon] => WC_Order_Item_Coupon_Data_Store
                                                [order-item-fee] => WC_Order_Item_Fee_Data_Store
                                                [order-item-product] => WC_Order_Item_Product_Data_Store
                                                [order-item-shipping] => WC_Order_Item_Shipping_Data_Store
                                                [order-item-tax] => WC_Order_Item_Tax_Data_Store
                                                [payment-token] => WC_Payment_Token_Data_Store
                                                [product] => WC_Product_Data_Store_CPT
                                                [product-grouped] => WC_Product_Grouped_Data_Store_CPT
                                                [product-variable] => WC_Product_Variable_Data_Store_CPT
                                                [product-variation] => WC_Product_Variation_Data_Store_CPT
                                                [shipping-zone] => WC_Shipping_Zone_Data_Store
                                                [webhook] => WC_Webhook_Data_Store
                                                [report-revenue-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                                                [report-orders] => Automattic\WooCommerce\Admin\API\Reports\Orders\DataStore
                                                [report-orders-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                                                [report-products] => Automattic\WooCommerce\Admin\API\Reports\Products\DataStore
                                                [report-variations] => Automattic\WooCommerce\Admin\API\Reports\Variations\DataStore
                                                [report-products-stats] => Automattic\WooCommerce\Admin\API\Reports\Products\Stats\DataStore
                                                [report-variations-stats] => Automattic\WooCommerce\Admin\API\Reports\Variations\Stats\DataStore
                                                [report-categories] => Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore
                                                [report-taxes] => Automattic\WooCommerce\Admin\API\Reports\Taxes\DataStore
                                                [report-taxes-stats] => Automattic\WooCommerce\Admin\API\Reports\Taxes\Stats\DataStore
                                                [report-coupons] => Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore
                                                [report-coupons-stats] => Automattic\WooCommerce\Admin\API\Reports\Coupons\Stats\DataStore
                                                [report-downloads] => Automattic\WooCommerce\Admin\API\Reports\Downloads\DataStore
                                                [report-downloads-stats] => Automattic\WooCommerce\Admin\API\Reports\Downloads\Stats\DataStore
                                                [admin-note] => Automattic\WooCommerce\Admin\Notes\DataStore
                                                [report-customers] => Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore
                                                [report-customers-stats] => Automattic\WooCommerce\Admin\API\Reports\Customers\Stats\DataStore
                                                [report-stock-stats] => Automattic\WooCommerce\Admin\API\Reports\Stock\Stats\DataStore
                                                [product-tb-placeholder] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                                                [product-tb-placeholder-variation] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                                            )
    
                                        [current_class_name:WC_Data_Store:private] => WC_Order_Item_Product_Data_Store
                                        [object_type:WC_Data_Store:private] => order-item-product
                                    )
    
                                [meta_data:protected] => Array
                                    (
                                    )
    
                            )
    
                    )
    
                [shipping_lines] => Array
                    (
                    )
    
                [fee_lines] => Array
                    (
                    )
    
                [tax_lines] => Array
                    (
                    )
    
            )
    
        [items_to_delete:protected] => Array
            (
            )
    
        [cache_group:protected] => orders
        [data_store_name:protected] => order
        [object_type:protected] => order
        [id:protected] => 1027
        [changes:protected] => Array
            (
            )
    
        [object_read:protected] => 1
        [extra_data:protected] => Array
            (
            )
    
        [default_data:protected] => Array
            (
                [parent_id] => 0
                [status] => 
                [currency] => 
                [version] => 
                [prices_include_tax] => 
                [date_created] => 
                [date_modified] => 
                [discount_total] => 0
                [discount_tax] => 0
                [shipping_total] => 0
                [shipping_tax] => 0
                [cart_tax] => 0
                [total] => 0
                [total_tax] => 0
                [customer_id] => 0
                [order_key] => 
                [billing] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [email] => 
                        [phone] => 
                    )
    
                [shipping] => Array
                    (
                        [first_name] => 
                        [last_name] => 
                        [company] => 
                        [address_1] => 
                        [address_2] => 
                        [city] => 
                        [state] => 
                        [postcode] => 
                        [country] => 
                        [phone] => 
                    )
    
                [payment_method] => 
                [payment_method_title] => 
                [transaction_id] => 
                [customer_ip_address] => 
                [customer_user_agent] => 
                [created_via] => 
                [customer_note] => 
                [date_completed] => 
                [date_paid] => 
                [cart_hash] => 
            )
    
        [data_store:protected] => WC_Data_Store Object
            (
                [instance:WC_Data_Store:private] => WC_Order_Data_Store_CPT Object
                    (
                        [internal_meta_keys:protected] => Array
                            (
                                [0] => _parent_id
                                [1] => _status
                                [2] => _currency
                                [3] => _version
                                [4] => _prices_include_tax
                                [5] => _date_created
                                [6] => _date_modified
                                [7] => _discount_total
                                [8] => _discount_tax
                                [9] => _shipping_total
                                [10] => _shipping_tax
                                [11] => _cart_tax
                                [12] => _total
                                [13] => _total_tax
                                [14] => _customer_id
                                [15] => _order_key
                                [16] => _billing
                                [17] => _shipping
                                [18] => _payment_method
                                [19] => _payment_method_title
                                [20] => _transaction_id
                                [21] => _customer_ip_address
                                [22] => _customer_user_agent
                                [23] => _created_via
                                [24] => _customer_note
                                [25] => _date_completed
                                [26] => _date_paid
                                [27] => _cart_hash
                                [28] => _customer_user
                                [29] => _order_key
                                [30] => _order_currency
                                [31] => _billing_first_name
                                [32] => _billing_last_name
                                [33] => _billing_company
                                [34] => _billing_address_1
                                [35] => _billing_address_2
                                [36] => _billing_city
                                [37] => _billing_state
                                [38] => _billing_postcode
                                [39] => _billing_country
                                [40] => _billing_email
                                [41] => _billing_phone
                                [42] => _shipping_first_name
                                [43] => _shipping_last_name
                                [44] => _shipping_company
                                [45] => _shipping_address_1
                                [46] => _shipping_address_2
                                [47] => _shipping_city
                                [48] => _shipping_state
                                [49] => _shipping_postcode
                                [50] => _shipping_country
                                [51] => _shipping_phone
                                [52] => _completed_date
                                [53] => _paid_date
                                [54] => _edit_lock
                                [55] => _edit_last
                                [56] => _cart_discount
                                [57] => _cart_discount_tax
                                [58] => _order_shipping
                                [59] => _order_shipping_tax
                                [60] => _order_tax
                                [61] => _order_total
                                [62] => _payment_method
                                [63] => _payment_method_title
                                [64] => _transaction_id
                                [65] => _customer_ip_address
                                [66] => _customer_user_agent
                                [67] => _created_via
                                [68] => _order_version
                                [69] => _prices_include_tax
                                [70] => _date_completed
                                [71] => _date_paid
                                [72] => _payment_tokens
                                [73] => _billing_address_index
                                [74] => _shipping_address_index
                                [75] => _recorded_sales
                                [76] => _recorded_coupon_usage_counts
                                [77] => _download_permissions_granted
                                [78] => _order_stock_reduced
                            )
    
                        [meta_type:protected] => post
                        [object_id_field_for_meta:protected] => 
                        [must_exist_meta_keys:protected] => Array
                            (
                            )
    
                    )
    
                [stores:WC_Data_Store:private] => Array
                    (
                        [coupon] => WC_Coupon_Data_Store_CPT
                        [customer] => WC_Customer_Data_Store
                        [customer-download] => WC_Customer_Download_Data_Store
                        [customer-download-log] => WC_Customer_Download_Log_Data_Store
                        [customer-session] => WC_Customer_Data_Store_Session
                        [order] => WC_Order_Data_Store_CPT
                        [order-refund] => WC_Order_Refund_Data_Store_CPT
                        [order-item] => WC_Order_Item_Data_Store
                        [order-item-coupon] => WC_Order_Item_Coupon_Data_Store
                        [order-item-fee] => WC_Order_Item_Fee_Data_Store
                        [order-item-product] => WC_Order_Item_Product_Data_Store
                        [order-item-shipping] => WC_Order_Item_Shipping_Data_Store
                        [order-item-tax] => WC_Order_Item_Tax_Data_Store
                        [payment-token] => WC_Payment_Token_Data_Store
                        [product] => WC_Product_Data_Store_CPT
                        [product-grouped] => WC_Product_Grouped_Data_Store_CPT
                        [product-variable] => WC_Product_Variable_Data_Store_CPT
                        [product-variation] => WC_Product_Variation_Data_Store_CPT
                        [shipping-zone] => WC_Shipping_Zone_Data_Store
                        [webhook] => WC_Webhook_Data_Store
                        [report-revenue-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-orders] => Automattic\WooCommerce\Admin\API\Reports\Orders\DataStore
                        [report-orders-stats] => Automattic\WooCommerce\Admin\API\Reports\Orders\Stats\DataStore
                        [report-products] => Automattic\WooCommerce\Admin\API\Reports\Products\DataStore
                        [report-variations] => Automattic\WooCommerce\Admin\API\Reports\Variations\DataStore
                        [report-products-stats] => Automattic\WooCommerce\Admin\API\Reports\Products\Stats\DataStore
                        [report-variations-stats] => Automattic\WooCommerce\Admin\API\Reports\Variations\Stats\DataStore
                        [report-categories] => Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore
                        [report-taxes] => Automattic\WooCommerce\Admin\API\Reports\Taxes\DataStore
                        [report-taxes-stats] => Automattic\WooCommerce\Admin\API\Reports\Taxes\Stats\DataStore
                        [report-coupons] => Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore
                        [report-coupons-stats] => Automattic\WooCommerce\Admin\API\Reports\Coupons\Stats\DataStore
                        [report-downloads] => Automattic\WooCommerce\Admin\API\Reports\Downloads\DataStore
                        [report-downloads-stats] => Automattic\WooCommerce\Admin\API\Reports\Downloads\Stats\DataStore
                        [admin-note] => Automattic\WooCommerce\Admin\Notes\DataStore
                        [report-customers] => Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore
                        [report-customers-stats] => Automattic\WooCommerce\Admin\API\Reports\Customers\Stats\DataStore
                        [report-stock-stats] => Automattic\WooCommerce\Admin\API\Reports\Stock\Stats\DataStore
                        [product-tb-placeholder] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                        [product-tb-placeholder-variation] => ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder_Data_Store_CPT
                    )
    
                [current_class_name:WC_Data_Store:private] => WC_Order_Data_Store_CPT
                [object_type:WC_Data_Store:private] => order
            )
    
        [meta_data:protected] => Array
            (
                [0] => WC_Meta_Data Object
                    (
                        [current_data:protected] => Array
                            (
                                [id] => 20467
                                [key] => _shipping_email
                                [value] => [email protected]
                            )
    
                        [data:protected] => Array
                            (
                                [id] => 20467
                                [key] => _shipping_email
                                [value] => [email protected]
                            )
    
                    )
    
                [1] => WC_Meta_Data Object
                    (
                        [current_data:protected] => Array
                            (
                                [id] => 20468
                                [key] => crbs_booking_id
                                [value] => 1026
                            )
    
                        [data:protected] => Array
                            (
                                [id] => 20468
                                [key] => crbs_booking_id
                                [value] => 1026
                            )
    
                    )
    
            )
    
    )
    
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: driver_age in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Booking.class.php on line 852
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: customer_pickup_location in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 975
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 975
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 975
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: value in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 976
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: customer_return_location in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 985
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 985
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 985
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: value in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Vehicle.class.php on line 986
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: value in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Booking.class.php on line 903
    [30-Sep-2021 08:17:33 UTC] PHP Notice:  Undefined index: value in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-content/plugins/car-rental-booking-system/class/CRBS.Booking.class.php on line 908
    [30-Sep-2021 08:17:33 UTC] PHP Deprecated:  WP_User->id was called with an argument that is <strong>deprecated</strong> since version 2.1.0! Use <code>WP_User->ID</code> instead. in /home/u689148458/domains/on-the-inter.net/public_html/medlandsrentals-staging/wp-includes/functions.php on line 5495
Viewing 15 replies - 1 through 15 (of 39 total)