Plugin Directory

Changeset 3144219


Ignore:
Timestamp:
08/30/2024 10:22:54 AM (20 months ago)
Author:
makewebbetter
Message:

release version 1.5.7

Location:
makewebbetter-hubspot-for-woocommerce/trunk
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • makewebbetter-hubspot-for-woocommerce/trunk/admin/class-hubwoo-admin.php

    r3097514 r3144219  
    709709        if( 'yes' == get_option('woocommerce_custom_orders_table_enabled', 'no') ) {
    710710        ?>
    711             hello
    712711            <div class="notice notice-warning hubwoo-hpos-notice-wrapper">
    713712                <div class="hubwoo-ocs-options hubwoo-pl-notice">
     
    748747                }
    749748            }
     749
     750            $upsert_meta = $order->get_meta('hubwoo_ecomm_deal_upsert', 'no');
     751       
     752            if( $upsert_meta == 'yes'){
     753                return;
     754            }
     755
     756            $post_type = get_post_type( $order_id );
     757
     758            if ( 'shop_subscription' == $post_type ) {
     759                return;
     760            }
     761           
     762            if ('yes' == get_option('woocommerce_custom_orders_table_data_sync_enabled', 'no') && 'yes' == get_option('woocommerce_custom_orders_table_enabled', 'no')) {
     763                return;
     764            }
     765           
     766            $order->update_meta_data('hubwoo_ecomm_deal_upsert', 'yes');
     767
    750768            $order->save();
    751769        }
     
    960978                    }
    961979
     980                    $guest_user_properties = apply_filters( 'hubwoo_map_new_abncart_properties', $single_cart['email'], $guest_user_properties );
     981                   
    962982                    if ( ! empty( $guest_user_properties ) ) {
    963983                        $guest_abandoned_carts[] = array(
  • makewebbetter-hubspot-for-woocommerce/trunk/admin/js/hubwoo-admin.js

    r3097514 r3144219  
    17681768                       
    17691769                    allCreatedProperties = allCreatedProperties.map((prop) => { return prop.replace(/["']/g, "").trim()})
    1770                     await saveUpdates( { 'hubwoo-groups-created': allCreatedGroups, 'hubwoo-properties-created': allCreatedProperties, 'hubwoo_fields_setup_completed': 1, 'hubwoo_pro_setup_completed': 1, 'hubwoo_plugin_version': '1.5.6' } );
     1770                    await saveUpdates( { 'hubwoo-groups-created': allCreatedGroups, 'hubwoo-properties-created': allCreatedProperties, 'hubwoo_fields_setup_completed': 1, 'hubwoo_pro_setup_completed': 1, 'hubwoo_plugin_version': '1.5.7' } );
    17711771                    await runEcommSetup();
    17721772                    updateProgressBar( 100 );
  • makewebbetter-hubspot-for-woocommerce/trunk/changelog.txt

    r3097514 r3144219  
    11 *** MWB HubSpot for WooCommerce Changelog ***
    2 2024-06-04 - version 1.5.6
     22024-08-30 - version 1.5.7
     3* Fix   - Bulk line item update.
     4
     52024-06-05 - version 1.5.6
    36* Fix   - Deal Update Fix for HPOS.
    47
  • makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwoo-ajax-handler.php

    r3068352 r3144219  
    13931393                            $contact_vid = json_decode( $response['body'] );
    13941394                            $hs_id = explode( 'ID: ', $contact_vid->message );
     1395                            $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contact );
    13951396                            update_user_meta( $user_id, 'hubwoo_user_vid', $hs_id[1] );
    13961397                            update_user_meta( $user_id, 'hubwoo_pro_user_data_change', 'synced' );
     
    17371738                                        $contact_vid = json_decode( $response['body'] );
    17381739                                        $hs_id = explode( 'ID: ', $contact_vid->message );
     1740                                        $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contacts );
    17391741                                        $order->update_meta_data('hubwoo_user_vid', $hs_id[1]);
    17401742                                        $order->update_meta_data('hubwoo_pro_guest_order', 'synced');
     
    18121814                    if ( $flag ) {
    18131815
    1814                         $deal_name  = '#' . $order_id;
     1816                        $deal_name  = '#' . $order->get_order_number();
    18151817
    18161818                        $user_detail['first_name'] = $order->get_billing_first_name();
  • makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwoo.php

    r3097514 r3144219  
    7272            } else {
    7373
    74                 $this->version = '1.5.6';
     74                $this->version = '1.5.7';
    7575            }
    7676
     
    556556            if ( self::is_setup_completed() ) {
    557557
    558                 return get_option( 'hubwoo_pro_version', '1.5.6' );
     558                return get_option( 'hubwoo_pro_version', '1.5.7' );
    559559            } else {
    560560
  • makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwoodatasync.php

    r3097514 r3144219  
    281281                    }
    282282
     283                    $guest_user_properties = apply_filters( 'hubwoo_map_ecomm_guest_CONTACT_properties', $guest_user_properties, $order_id );
     284
    283285                    $guest_user_properties_data = array(
    284286                        'email'      => $guest_email,
  • makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwooecommpropertycallbacks.php

    r3046221 r3144219  
    345345                }
    346346            }
     347           
    347348            $deal_stage = self::hubwoo_get_valid_deal_stage( 'wc-' . $status );
    348349
  • makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwooobjectproperties.php

    r3097514 r3144219  
    103103                        $contact_vid = json_decode( $response['body'] );
    104104                        $hs_id = explode( 'ID: ', $contact_vid->message );
     105                        $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contact );
    105106                        update_user_meta( $user_id, 'hubwoo_user_vid', $hs_id[1] );
    106107                        update_user_meta( $user_id, 'hubwoo_pro_user_data_change', 'synced' );
     
    196197                        $contact_vid = json_decode( $response['body'] );
    197198                        $hs_id = explode( 'ID: ', $contact_vid->message );
     199                        $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contact );
    198200                        $order->update_meta_data('hubwoo_user_vid', $hs_id[1]);
    199201                        $order->update_meta_data('hubwoo_pro_guest_order', 'synced');
     
    283285            if ( $flag ) {
    284286
    285                 $deal_name  = '#' . $order_id;
     287                $deal_name  = '#' . $order->get_order_number();
    286288
    287289                $user_detail['first_name'] = $order->get_billing_first_name();
     
    463465                $deal_id = $order->get_meta('hubwoo_ecomm_deal_id', true);
    464466                if ( isset( $response['body'] ) && ! empty( $response['body'] ) ) {
    465                     $response_body = json_decode( $response['body'] );
    466                     foreach ( $order_items as $item_key => $single_item ) :
    467 
    468                         $product_id = $single_item->get_variation_id();
    469                         if ( 0 === $product_id ) {
    470                             $product_id = $single_item->get_product_id();
    471                             if ( 0 === $product_id ) {
    472                                 $no_products_found = true;
    473                             }
    474                         }
    475                         if ( get_post_status( $product_id ) == 'trash' || get_post_status( $product_id ) == false ) {
    476                             continue;
    477                         }
    478 
    479                         $product         = $single_item->get_product();
    480                         $name            = self::get_instance()->hubwoo_ecomm_product_name( $product );
    481 
    482                         if ( isset( $response_body ) && ! empty( $response_body ) ) {
    483 
    484                             foreach ( $response_body->results as $key => $value ) {
    485 
    486                                 $line_item_hs_id = $value->id;
    487                                 $order->update_meta_data('hubwoo_order_line_item_created', 'yes');
    488                                 $order->save();
    489                                 $response = HubWooConnectionMananager::get_instance()->associate_object( 'deal', $deal_id, 'line_item', $line_item_hs_id, 19 );
    490                             }
    491                         }
    492                     endforeach;
    493 
     467                    $created_line_items = json_decode( $response['body'] )->results;
     468                    $inputs = array();
     469                    foreach($created_line_items as $line_item){
     470                        $input = array(
     471                            'types' => array(
     472                                array(
     473                                    'associationCategory' => "HUBSPOT_DEFINED",
     474                                    'associationTypeId' => 19
     475                                )
     476                            ),
     477                            'from' => array(
     478                                'id' => $deal_id
     479                            ),
     480                            'to' => array(
     481                                'id' => $line_item->id
     482                            )
     483                        );
     484                        $inputs[] = $input;
     485                    }
     486                    $inputs = array('inputs'=>$inputs);
     487                    $response = HubWooConnectionMananager::get_instance()->associate_batch_object( 'deal', 'line_item', $inputs);
     488                    if($response['status_code'] == 201){
     489                        $order->update_meta_data('hubwoo_order_line_item_created', 'yes');
     490                        $order->save();
     491                    }
    494492                    if ( 1 == get_option( 'hubwoo_deals_sync_running', 0 ) ) {
    495 
    496493                        $current_count = get_option( 'hubwoo_deals_current_sync_count', 0 );
    497494                        update_option( 'hubwoo_deals_current_sync_count', ++$current_count );
  • makewebbetter-hubspot-for-woocommerce/trunk/languages/makewebbetter-hubspot-for-woocommerce-en_US.po

    r3097514 r3144219  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: MWB HubSpot for WooCommerce 1.5.6\n"
    4 "POT-Creation-Date: 2024-06-03 11:58+0530\n"
    5 "PO-Revision-Date: 2024-06-03 11:59+0530\n"
     3"Project-Id-Version: MWB HubSpot for WooCommerce 1.5.7\n"
     4"POT-Creation-Date: 2024-08-30 12:02+0530\n"
     5"PO-Revision-Date: 2024-08-30 12:04+0530\n"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "X-Generator: Poedit 3.4.3\n"
     12"X-Generator: Poedit 2.3\n"
    1313"X-Poedit-Basepath: .\n"
    1414
     
    126126msgstr ""
    127127
    128 #: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:2502
     128#: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:2522
    129129msgid "Select a time period"
    130130msgstr ""
     
    150150msgstr ""
    151151
    152 #: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:2525
     152#: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:2545
    153153msgid "dd-mm-yyyy"
    154154msgstr ""
     
    176176msgstr ""
    177177
    178 #: admin/class-hubwoo-admin.php:715
     178#: admin/class-hubwoo-admin.php:714
    179179msgid ""
    180180"We noticed you're using WooCommerce HPOS. To ensure compatibility with the "
     
    182182msgstr ""
    183183
    184 #: admin/class-hubwoo-admin.php:718
     184#: admin/class-hubwoo-admin.php:717
    185185msgid "Install Now"
    186186msgstr ""
    187187
    188 #: admin/class-hubwoo-admin.php:778
     188#: admin/class-hubwoo-admin.php:796
    189189#: includes/class-hubwoocontactproperties.php:225
    190190msgid "Subscriptions Details"
    191191msgstr ""
    192192
    193 #: admin/class-hubwoo-admin.php:1146
     193#: admin/class-hubwoo-admin.php:1166
    194194msgid "HubSpot Actions"
    195195msgstr ""
    196196
    197 #: admin/class-hubwoo-admin.php:1162 admin/templates/hubwoo-overview.php:121
     197#: admin/class-hubwoo-admin.php:1182 admin/templates/hubwoo-overview.php:121
    198198msgid "Abandoned Cart Settings"
    199199msgstr ""
    200200
    201 #: admin/class-hubwoo-admin.php:1168 admin/class-hubwoo-admin.php:2419
    202 #: admin/class-hubwoo-admin.php:2449
     201#: admin/class-hubwoo-admin.php:1188 admin/class-hubwoo-admin.php:2439
     202#: admin/class-hubwoo-admin.php:2469
    203203msgid "Enable/Disable"
    204204msgstr ""
    205205
    206 #: admin/class-hubwoo-admin.php:1170
     206#: admin/class-hubwoo-admin.php:1190
    207207msgid "Track Abandoned Carts"
    208208msgstr ""
    209209
    210 #: admin/class-hubwoo-admin.php:1176
     210#: admin/class-hubwoo-admin.php:1196
    211211msgid "Guest Users "
    212212msgstr ""
    213213
    214 #: admin/class-hubwoo-admin.php:1178
     214#: admin/class-hubwoo-admin.php:1198
    215215msgid "Track Guest Abandoned Carts"
    216216msgstr ""
    217217
    218 #: admin/class-hubwoo-admin.php:1184
     218#: admin/class-hubwoo-admin.php:1204
    219219msgid "Delete Old Data "
    220220msgstr ""
    221221
    222 #: admin/class-hubwoo-admin.php:1186
     222#: admin/class-hubwoo-admin.php:1206
    223223msgid "Delete Abandoned Carts Data"
    224224msgstr ""
    225225
    226 #: admin/class-hubwoo-admin.php:1192
     226#: admin/class-hubwoo-admin.php:1212
    227227msgid "Delete Data Timer( Days )"
    228228msgstr ""
    229229
    230 #: admin/class-hubwoo-admin.php:1195
     230#: admin/class-hubwoo-admin.php:1215
    231231msgid "Delete Abandoned cart data form woocommerce store."
    232232msgstr ""
    233233
    234 #: admin/class-hubwoo-admin.php:1202
     234#: admin/class-hubwoo-admin.php:1222
    235235msgid "Cart Timer( Minutes )"
    236236msgstr ""
    237237
    238 #: admin/class-hubwoo-admin.php:1205
     238#: admin/class-hubwoo-admin.php:1225
    239239msgid ""
    240240"Set the timer for abandoned cart. Customers abandoned cart data will be "
     
    242242msgstr ""
    243243
    244 #: admin/class-hubwoo-admin.php:1441
     244#: admin/class-hubwoo-admin.php:1461
    245245#: includes/class-hubwoocontactproperties.php:3258
    246246msgid "Image"
    247247msgstr ""
    248248
    249 #: admin/class-hubwoo-admin.php:1441
     249#: admin/class-hubwoo-admin.php:1461
    250250#: includes/class-hubwoocontactproperties.php:3258
    251251msgid "Item"
    252252msgstr ""
    253253
    254 #: admin/class-hubwoo-admin.php:1441
     254#: admin/class-hubwoo-admin.php:1461
    255255#: includes/class-hubwoocontactproperties.php:3258
    256256msgid "Qty"
    257257msgstr ""
    258258
    259 #: admin/class-hubwoo-admin.php:1441
     259#: admin/class-hubwoo-admin.php:1461
    260260msgid "Cost"
    261261msgstr ""
    262262
    263 #: admin/class-hubwoo-admin.php:1441
     263#: admin/class-hubwoo-admin.php:1461
    264264#: includes/class-hubwoocontactproperties.php:3258
    265265msgid "Total"
    266266msgstr ""
    267267
    268 #: admin/class-hubwoo-admin.php:1802
     268#: admin/class-hubwoo-admin.php:1822
    269269#: includes/class-hubwoocontactproperties.php:2904
    270270#: includes/class-hubwoocontactproperties.php:3001
     
    273273msgstr ""
    274274
    275 #: admin/class-hubwoo-admin.php:1806
     275#: admin/class-hubwoo-admin.php:1826
    276276#: includes/class-hubwoocontactproperties.php:2908
    277277#: includes/class-hubwoocontactproperties.php:3005
     
    280280msgstr ""
    281281
    282 #: admin/class-hubwoo-admin.php:1830
     282#: admin/class-hubwoo-admin.php:1850
    283283#: admin/templates/hubwoo-general-settings.php:303
    284284msgid "Plugin Settings"
    285285msgstr ""
    286286
    287 #: admin/class-hubwoo-admin.php:1836
     287#: admin/class-hubwoo-admin.php:1856
    288288msgid "Sync with User Role"
    289289msgstr ""
    290290
    291 #: admin/class-hubwoo-admin.php:1840
     291#: admin/class-hubwoo-admin.php:1860
    292292msgid ""
    293293"The users with selected roles will be synced on HubSpot. Default will be all "
     
    295295msgstr ""
    296296
    297 #: admin/class-hubwoo-admin.php:1848
     297#: admin/class-hubwoo-admin.php:1868
    298298msgid "WooCommerce Subscription"
    299299msgstr ""
    300300
    301 #: admin/class-hubwoo-admin.php:1851
     301#: admin/class-hubwoo-admin.php:1871
    302302msgid "Enable subscriptions data sync"
    303303msgstr ""
    304304
    305 #: admin/class-hubwoo-admin.php:1858
     305#: admin/class-hubwoo-admin.php:1878
    306306msgid "Show Checkbox on Checkout Page"
    307307msgstr ""
    308308
    309 #: admin/class-hubwoo-admin.php:1861
     309#: admin/class-hubwoo-admin.php:1881
    310310msgid "Show Opt-In checkbox on Checkout Page"
    311311msgstr ""
    312312
    313 #: admin/class-hubwoo-admin.php:1867
     313#: admin/class-hubwoo-admin.php:1887
    314314msgid "Checkbox Label on Checkout Page"
    315315msgstr ""
    316316
    317 #: admin/class-hubwoo-admin.php:1870 admin/class-hubwoo-admin.php:1888
     317#: admin/class-hubwoo-admin.php:1890 admin/class-hubwoo-admin.php:1908
    318318msgid "Label to show for the checkbox"
    319319msgstr ""
    320320
    321 #: admin/class-hubwoo-admin.php:1872 admin/class-hubwoo-admin.php:1890
     321#: admin/class-hubwoo-admin.php:1892 admin/class-hubwoo-admin.php:1910
    322322#: public/class-hubwoo-public.php:198 public/class-hubwoo-public.php:219
    323323msgid "Subscribe"
    324324msgstr ""
    325325
    326 #: admin/class-hubwoo-admin.php:1876
     326#: admin/class-hubwoo-admin.php:1896
    327327msgid "Show Checkbox on My Account Page"
    328328msgstr ""
    329329
    330 #: admin/class-hubwoo-admin.php:1879
     330#: admin/class-hubwoo-admin.php:1899
    331331msgid "Show Opt-In checkbox on My Account Page (Registration form)"
    332332msgstr ""
    333333
    334 #: admin/class-hubwoo-admin.php:1885
     334#: admin/class-hubwoo-admin.php:1905
    335335msgid "Checkbox Label on My Account Page"
    336336msgstr ""
    337337
    338 #: admin/class-hubwoo-admin.php:1894
     338#: admin/class-hubwoo-admin.php:1914
    339339msgid "Calculate ROI for the Selected Status"
    340340msgstr ""
    341341
    342 #: admin/class-hubwoo-admin.php:1898
     342#: admin/class-hubwoo-admin.php:1918
    343343msgid ""
    344344"Select an order status from the dropdown for which the new order property "
     
    346346msgstr ""
    347347
    348 #: admin/class-hubwoo-admin.php:2412
     348#: admin/class-hubwoo-admin.php:2432
    349349msgid "Apply your settings for Deals and its stages"
    350350msgstr ""
    351351
    352 #: admin/class-hubwoo-admin.php:2421
     352#: admin/class-hubwoo-admin.php:2441
    353353msgid "Allow to sync new deals"
    354354msgstr ""
    355355
    356 #: admin/class-hubwoo-admin.php:2428
     356#: admin/class-hubwoo-admin.php:2448
    357357msgid "Days required to close a deal"
    358358msgstr ""
    359359
    360 #: admin/class-hubwoo-admin.php:2431
     360#: admin/class-hubwoo-admin.php:2451
    361361msgid ""
    362362"set the minimum number of days in which the pending/open deals can be closed/"
     
    364364msgstr ""
    365365
    366 #: admin/class-hubwoo-admin.php:2439
     366#: admin/class-hubwoo-admin.php:2459
    367367msgid "Winning Deal Stages"
    368368msgstr ""
    369369
    370 #: admin/class-hubwoo-admin.php:2443
     370#: admin/class-hubwoo-admin.php:2463
    371371msgid ""
    372372"select the deal stages of ecommerce pipeline which are won according to your "
     
    375375msgstr ""
    376376
    377 #: admin/class-hubwoo-admin.php:2451
     377#: admin/class-hubwoo-admin.php:2471
    378378msgid "Allow to associate deal and company"
    379379msgstr ""
    380380
    381 #: admin/class-hubwoo-admin.php:2458
     381#: admin/class-hubwoo-admin.php:2478
    382382msgid "Enable Multi Currency\tSync"
    383383msgstr ""
    384384
    385 #: admin/class-hubwoo-admin.php:2460
     385#: admin/class-hubwoo-admin.php:2480
    386386msgid "Enable to sync currency if you are using multi currency on your site."
    387387msgstr ""
    388388
    389 #: admin/class-hubwoo-admin.php:2485
     389#: admin/class-hubwoo-admin.php:2505
    390390msgid "Export your old orders as Deals on HubSpot"
    391391msgstr ""
    392392
    393 #: admin/class-hubwoo-admin.php:2492
     393#: admin/class-hubwoo-admin.php:2512
    394394msgid "Select order status"
    395395msgstr ""
    396396
    397 #: admin/class-hubwoo-admin.php:2495
     397#: admin/class-hubwoo-admin.php:2515
    398398msgid ""
    399399"Select a order status from the dropdown and all orders for the selected "
     
    401401msgstr ""
    402402
    403 #: admin/class-hubwoo-admin.php:2504
     403#: admin/class-hubwoo-admin.php:2524
    404404msgid " Date range for orders"
    405405msgstr ""
    406406
    407 #: admin/class-hubwoo-admin.php:2510
     407#: admin/class-hubwoo-admin.php:2530
    408408msgid "Orders from date"
    409409msgstr ""
    410410
    411 #: admin/class-hubwoo-admin.php:2515
     411#: admin/class-hubwoo-admin.php:2535
    412412msgid "From which date you want to sync the orders, select that date"
    413413msgstr ""
    414414
    415 #: admin/class-hubwoo-admin.php:2521
     415#: admin/class-hubwoo-admin.php:2541
    416416msgid "Orders up to date"
    417417msgstr ""
    418418
    419 #: admin/class-hubwoo-admin.php:2526
     419#: admin/class-hubwoo-admin.php:2546
    420420msgid "Up to which date you want to sync the orders, select that date"
    421421msgstr ""
    422422
    423 #: admin/class-hubwoo-admin.php:3182
     423#: admin/class-hubwoo-admin.php:3202
    424424#: includes/class-hubwoocontactproperties.php:409
    425425msgid "Customer Source Store"
  • makewebbetter-hubspot-for-woocommerce/trunk/languages/makewebbetter-hubspot-for-woocommerce.pot

    r3097514 r3144219  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: MWB HubSpot for WooCommerce 1.5.6\n"
    5 "POT-Creation-Date: 2024-06-03 11:58+0530\n"
     4"Project-Id-Version: MWB HubSpot for WooCommerce 1.5.7\n"
     5"POT-Creation-Date: 2024-08-30 12:02+0530\n"
    66"PO-Revision-Date: 2024-03-05 15:13+0530\n"
    77"Last-Translator: \n"
     
    1111"Content-Type: text/plain; charset=UTF-8\n"
    1212"Content-Transfer-Encoding: 8bit\n"
    13 "X-Generator: Poedit 3.4.3\n"
     13"X-Generator: Poedit 2.3\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-SourceCharset: UTF-8\n"
     
    132132msgstr ""
    133133
    134 #: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:2502
     134#: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:2522
    135135msgid "Select a time period"
    136136msgstr ""
     
    156156msgstr ""
    157157
    158 #: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:2525
     158#: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:2545
    159159msgid "dd-mm-yyyy"
    160160msgstr ""
     
    182182msgstr ""
    183183
    184 #: admin/class-hubwoo-admin.php:715
     184#: admin/class-hubwoo-admin.php:714
    185185msgid ""
    186186"We noticed you're using WooCommerce HPOS. To ensure compatibility with the "
     
    188188msgstr ""
    189189
    190 #: admin/class-hubwoo-admin.php:718
     190#: admin/class-hubwoo-admin.php:717
    191191msgid "Install Now"
    192192msgstr ""
    193193
    194 #: admin/class-hubwoo-admin.php:778
     194#: admin/class-hubwoo-admin.php:796
    195195#: includes/class-hubwoocontactproperties.php:225
    196196msgid "Subscriptions Details"
    197197msgstr ""
    198198
    199 #: admin/class-hubwoo-admin.php:1146
     199#: admin/class-hubwoo-admin.php:1166
    200200msgid "HubSpot Actions"
    201201msgstr ""
    202202
    203 #: admin/class-hubwoo-admin.php:1162 admin/templates/hubwoo-overview.php:121
     203#: admin/class-hubwoo-admin.php:1182 admin/templates/hubwoo-overview.php:121
    204204msgid "Abandoned Cart Settings"
    205205msgstr ""
    206206
    207 #: admin/class-hubwoo-admin.php:1168 admin/class-hubwoo-admin.php:2419
    208 #: admin/class-hubwoo-admin.php:2449
     207#: admin/class-hubwoo-admin.php:1188 admin/class-hubwoo-admin.php:2439
     208#: admin/class-hubwoo-admin.php:2469
    209209msgid "Enable/Disable"
    210210msgstr ""
    211211
    212 #: admin/class-hubwoo-admin.php:1170
     212#: admin/class-hubwoo-admin.php:1190
    213213msgid "Track Abandoned Carts"
    214214msgstr ""
    215215
    216 #: admin/class-hubwoo-admin.php:1176
     216#: admin/class-hubwoo-admin.php:1196
    217217msgid "Guest Users "
    218218msgstr ""
    219219
    220 #: admin/class-hubwoo-admin.php:1178
     220#: admin/class-hubwoo-admin.php:1198
    221221msgid "Track Guest Abandoned Carts"
    222222msgstr ""
    223223
    224 #: admin/class-hubwoo-admin.php:1184
     224#: admin/class-hubwoo-admin.php:1204
    225225msgid "Delete Old Data "
    226226msgstr ""
    227227
    228 #: admin/class-hubwoo-admin.php:1186
     228#: admin/class-hubwoo-admin.php:1206
    229229msgid "Delete Abandoned Carts Data"
    230230msgstr ""
    231231
    232 #: admin/class-hubwoo-admin.php:1192
     232#: admin/class-hubwoo-admin.php:1212
    233233msgid "Delete Data Timer( Days )"
    234234msgstr ""
    235235
    236 #: admin/class-hubwoo-admin.php:1195
     236#: admin/class-hubwoo-admin.php:1215
    237237msgid "Delete Abandoned cart data form woocommerce store."
    238238msgstr ""
    239239
    240 #: admin/class-hubwoo-admin.php:1202
     240#: admin/class-hubwoo-admin.php:1222
    241241msgid "Cart Timer( Minutes )"
    242242msgstr ""
    243243
    244 #: admin/class-hubwoo-admin.php:1205
     244#: admin/class-hubwoo-admin.php:1225
    245245msgid ""
    246246"Set the timer for abandoned cart. Customers abandoned cart data will be "
     
    248248msgstr ""
    249249
    250 #: admin/class-hubwoo-admin.php:1441
     250#: admin/class-hubwoo-admin.php:1461
    251251#: includes/class-hubwoocontactproperties.php:3258
    252252msgid "Image"
    253253msgstr ""
    254254
    255 #: admin/class-hubwoo-admin.php:1441
     255#: admin/class-hubwoo-admin.php:1461
    256256#: includes/class-hubwoocontactproperties.php:3258
    257257msgid "Item"
    258258msgstr ""
    259259
    260 #: admin/class-hubwoo-admin.php:1441
     260#: admin/class-hubwoo-admin.php:1461
    261261#: includes/class-hubwoocontactproperties.php:3258
    262262msgid "Qty"
    263263msgstr ""
    264264
    265 #: admin/class-hubwoo-admin.php:1441
     265#: admin/class-hubwoo-admin.php:1461
    266266msgid "Cost"
    267267msgstr ""
    268268
    269 #: admin/class-hubwoo-admin.php:1441
     269#: admin/class-hubwoo-admin.php:1461
    270270#: includes/class-hubwoocontactproperties.php:3258
    271271msgid "Total"
    272272msgstr ""
    273273
    274 #: admin/class-hubwoo-admin.php:1802
     274#: admin/class-hubwoo-admin.php:1822
    275275#: includes/class-hubwoocontactproperties.php:2904
    276276#: includes/class-hubwoocontactproperties.php:3001
     
    279279msgstr ""
    280280
    281 #: admin/class-hubwoo-admin.php:1806
     281#: admin/class-hubwoo-admin.php:1826
    282282#: includes/class-hubwoocontactproperties.php:2908
    283283#: includes/class-hubwoocontactproperties.php:3005
     
    286286msgstr ""
    287287
    288 #: admin/class-hubwoo-admin.php:1830
     288#: admin/class-hubwoo-admin.php:1850
    289289#: admin/templates/hubwoo-general-settings.php:303
    290290msgid "Plugin Settings"
    291291msgstr ""
    292292
    293 #: admin/class-hubwoo-admin.php:1836
     293#: admin/class-hubwoo-admin.php:1856
    294294msgid "Sync with User Role"
    295295msgstr ""
    296296
    297 #: admin/class-hubwoo-admin.php:1840
     297#: admin/class-hubwoo-admin.php:1860
    298298msgid ""
    299299"The users with selected roles will be synced on HubSpot. Default will be all "
     
    301301msgstr ""
    302302
    303 #: admin/class-hubwoo-admin.php:1848
     303#: admin/class-hubwoo-admin.php:1868
    304304msgid "WooCommerce Subscription"
    305305msgstr ""
    306306
    307 #: admin/class-hubwoo-admin.php:1851
     307#: admin/class-hubwoo-admin.php:1871
    308308msgid "Enable subscriptions data sync"
    309309msgstr ""
    310310
    311 #: admin/class-hubwoo-admin.php:1858
     311#: admin/class-hubwoo-admin.php:1878
    312312msgid "Show Checkbox on Checkout Page"
    313313msgstr ""
    314314
    315 #: admin/class-hubwoo-admin.php:1861
     315#: admin/class-hubwoo-admin.php:1881
    316316msgid "Show Opt-In checkbox on Checkout Page"
    317317msgstr ""
    318318
    319 #: admin/class-hubwoo-admin.php:1867
     319#: admin/class-hubwoo-admin.php:1887
    320320msgid "Checkbox Label on Checkout Page"
    321321msgstr ""
    322322
    323 #: admin/class-hubwoo-admin.php:1870 admin/class-hubwoo-admin.php:1888
     323#: admin/class-hubwoo-admin.php:1890 admin/class-hubwoo-admin.php:1908
    324324msgid "Label to show for the checkbox"
    325325msgstr ""
    326326
    327 #: admin/class-hubwoo-admin.php:1872 admin/class-hubwoo-admin.php:1890
     327#: admin/class-hubwoo-admin.php:1892 admin/class-hubwoo-admin.php:1910
    328328#: public/class-hubwoo-public.php:198 public/class-hubwoo-public.php:219
    329329msgid "Subscribe"
    330330msgstr ""
    331331
    332 #: admin/class-hubwoo-admin.php:1876
     332#: admin/class-hubwoo-admin.php:1896
    333333msgid "Show Checkbox on My Account Page"
    334334msgstr ""
    335335
    336 #: admin/class-hubwoo-admin.php:1879
     336#: admin/class-hubwoo-admin.php:1899
    337337msgid "Show Opt-In checkbox on My Account Page (Registration form)"
    338338msgstr ""
    339339
    340 #: admin/class-hubwoo-admin.php:1885
     340#: admin/class-hubwoo-admin.php:1905
    341341msgid "Checkbox Label on My Account Page"
    342342msgstr ""
    343343
    344 #: admin/class-hubwoo-admin.php:1894
     344#: admin/class-hubwoo-admin.php:1914
    345345msgid "Calculate ROI for the Selected Status"
    346346msgstr ""
    347347
    348 #: admin/class-hubwoo-admin.php:1898
     348#: admin/class-hubwoo-admin.php:1918
    349349msgid ""
    350350"Select an order status from the dropdown for which the new order property "
     
    352352msgstr ""
    353353
    354 #: admin/class-hubwoo-admin.php:2412
     354#: admin/class-hubwoo-admin.php:2432
    355355msgid "Apply your settings for Deals and its stages"
    356356msgstr ""
    357357
    358 #: admin/class-hubwoo-admin.php:2421
     358#: admin/class-hubwoo-admin.php:2441
    359359msgid "Allow to sync new deals"
    360360msgstr ""
    361361
    362 #: admin/class-hubwoo-admin.php:2428
     362#: admin/class-hubwoo-admin.php:2448
    363363msgid "Days required to close a deal"
    364364msgstr ""
    365365
    366 #: admin/class-hubwoo-admin.php:2431
     366#: admin/class-hubwoo-admin.php:2451
    367367msgid ""
    368368"set the minimum number of days in which the pending/open deals can be closed/"
     
    370370msgstr ""
    371371
    372 #: admin/class-hubwoo-admin.php:2439
     372#: admin/class-hubwoo-admin.php:2459
    373373msgid "Winning Deal Stages"
    374374msgstr ""
    375375
    376 #: admin/class-hubwoo-admin.php:2443
     376#: admin/class-hubwoo-admin.php:2463
    377377msgid ""
    378378"select the deal stages of ecommerce pipeline which are won according to your "
     
    381381msgstr ""
    382382
    383 #: admin/class-hubwoo-admin.php:2451
     383#: admin/class-hubwoo-admin.php:2471
    384384msgid "Allow to associate deal and company"
    385385msgstr ""
    386386
    387 #: admin/class-hubwoo-admin.php:2458
     387#: admin/class-hubwoo-admin.php:2478
    388388msgid "Enable Multi Currency\tSync"
    389389msgstr ""
    390390
    391 #: admin/class-hubwoo-admin.php:2460
     391#: admin/class-hubwoo-admin.php:2480
    392392msgid "Enable to sync currency if you are using multi currency on your site."
    393393msgstr ""
    394394
    395 #: admin/class-hubwoo-admin.php:2485
     395#: admin/class-hubwoo-admin.php:2505
    396396msgid "Export your old orders as Deals on HubSpot"
    397397msgstr ""
    398398
    399 #: admin/class-hubwoo-admin.php:2492
     399#: admin/class-hubwoo-admin.php:2512
    400400msgid "Select order status"
    401401msgstr ""
    402402
    403 #: admin/class-hubwoo-admin.php:2495
     403#: admin/class-hubwoo-admin.php:2515
    404404msgid ""
    405405"Select a order status from the dropdown and all orders for the selected "
     
    407407msgstr ""
    408408
    409 #: admin/class-hubwoo-admin.php:2504
     409#: admin/class-hubwoo-admin.php:2524
    410410msgid " Date range for orders"
    411411msgstr ""
    412412
    413 #: admin/class-hubwoo-admin.php:2510
     413#: admin/class-hubwoo-admin.php:2530
    414414msgid "Orders from date"
    415415msgstr ""
    416416
    417 #: admin/class-hubwoo-admin.php:2515
     417#: admin/class-hubwoo-admin.php:2535
    418418msgid "From which date you want to sync the orders, select that date"
    419419msgstr ""
    420420
    421 #: admin/class-hubwoo-admin.php:2521
     421#: admin/class-hubwoo-admin.php:2541
    422422msgid "Orders up to date"
    423423msgstr ""
    424424
    425 #: admin/class-hubwoo-admin.php:2526
     425#: admin/class-hubwoo-admin.php:2546
    426426msgid "Up to which date you want to sync the orders, select that date"
    427427msgstr ""
    428428
    429 #: admin/class-hubwoo-admin.php:3182
     429#: admin/class-hubwoo-admin.php:3202
    430430#: includes/class-hubwoocontactproperties.php:409
    431431msgid "Customer Source Store"
  • makewebbetter-hubspot-for-woocommerce/trunk/makewebbetter-hubspot-for-woocommerce.php

    r3097514 r3144219  
    1616 * Plugin URI:           https://wordpress.org/plugins/makewebbetter-hubspot-for-woocommerce
    1717 * Description:          Integrate WooCommerce with HubSpot’s free CRM, abandoned cart tracking, email marketing, marketing automation, analytics & more.
    18  * Version:              1.5.6
     18 * Version:              1.5.7
    1919 * Requires at least:    4.4.0
    20  * Tested up to:         6.5.3
     20 * Tested up to:         6.6.1
    2121 * WC requires at least: 3.5.0
    22  * WC tested up to:      8.9.1
     22 * WC tested up to:      9.2.3
    2323 * Author:               MakeWebBetter
    2424 * Author URI:           http://www.makewebbetter.com/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend
     
    110110        hubwoo_pro_define( 'HUBWOO_ABSPATH', dirname( __FILE__ ) . '/' );
    111111        hubwoo_pro_define( 'HUBWOO_URL', plugin_dir_url( __FILE__ ) );
    112         hubwoo_pro_define( 'HUBWOO_VERSION', '1.5.3' );
     112        hubwoo_pro_define( 'HUBWOO_VERSION', '1.5.7' );
    113113        hubwoo_pro_define( 'HUBWOO_PLUGINS_PATH', plugin_dir_path( __DIR__ ) );
    114114        hubwoo_pro_define( 'HUBWOO_CLIENT_ID', '769fa3e6-79b1-412d-b69c-6b8242b2c62a' );
  • makewebbetter-hubspot-for-woocommerce/trunk/readme.txt

    r3097514 r3144219  
    44Tags: abandoned cart, email marketing, marketing automation, woocommerce, hubspot
    55Requires at least: 4.4.0
    6 Tested up to: 6.5.2
     6Tested up to: 6.6.1
    77WC requires at least: 3.5.0
    8 WC tested up to: 8.7.0
     8WC tested up to: 9.2.3
    99Requires PHP: 5.1
    10 Stable tag: 1.5.6
     10Stable tag: 1.5.7
    1111License: GPLv3 or later
    1212License URI: http://www.gnu.org/licenses/gpl-3.0.txt
     
    142142
    143143== Changelog ==
    144 = 1.5.6 - Released on 04 June 2024 =
     144= 1.5.7 - Released on 30 August 2024 =
     145* Fix   - Bulk line item update, filters added.
     146= 1.5.6 - Released on 05 June 2024 =
    145147* Fix   - Deal Update Fix for HPOS.
    146148= 1.5.5 - Released on 12 April 2024 =
     
    226228== Upgrade Notice ==
    227229 
    228 = 1.5.6 - Released on 04 June 2024 =
    229 * Fix   - Minor Fixes.
     230= 1.5.7 - Released on 30 August 2024 =
     231* Fix   - Minor Fixes.
Note: See TracChangeset for help on using the changeset viewer.