Changeset 3144219
- Timestamp:
- 08/30/2024 10:22:54 AM (20 months ago)
- Location:
- makewebbetter-hubspot-for-woocommerce/trunk
- Files:
-
- 13 edited
-
admin/class-hubwoo-admin.php (modified) (3 diffs)
-
admin/js/hubwoo-admin.js (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
includes/class-hubwoo-ajax-handler.php (modified) (3 diffs)
-
includes/class-hubwoo.php (modified) (2 diffs)
-
includes/class-hubwoodatasync.php (modified) (1 diff)
-
includes/class-hubwooecommpropertycallbacks.php (modified) (1 diff)
-
includes/class-hubwooobjectproperties.php (modified) (4 diffs)
-
languages/makewebbetter-hubspot-for-woocommerce-en_US.mo (modified) (previous)
-
languages/makewebbetter-hubspot-for-woocommerce-en_US.po (modified) (14 diffs)
-
languages/makewebbetter-hubspot-for-woocommerce.pot (modified) (14 diffs)
-
makewebbetter-hubspot-for-woocommerce.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
makewebbetter-hubspot-for-woocommerce/trunk/admin/class-hubwoo-admin.php
r3097514 r3144219 709 709 if( 'yes' == get_option('woocommerce_custom_orders_table_enabled', 'no') ) { 710 710 ?> 711 hello712 711 <div class="notice notice-warning hubwoo-hpos-notice-wrapper"> 713 712 <div class="hubwoo-ocs-options hubwoo-pl-notice"> … … 748 747 } 749 748 } 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 750 768 $order->save(); 751 769 } … … 960 978 } 961 979 980 $guest_user_properties = apply_filters( 'hubwoo_map_new_abncart_properties', $single_cart['email'], $guest_user_properties ); 981 962 982 if ( ! empty( $guest_user_properties ) ) { 963 983 $guest_abandoned_carts[] = array( -
makewebbetter-hubspot-for-woocommerce/trunk/admin/js/hubwoo-admin.js
r3097514 r3144219 1768 1768 1769 1769 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' } ); 1771 1771 await runEcommSetup(); 1772 1772 updateProgressBar( 100 ); -
makewebbetter-hubspot-for-woocommerce/trunk/changelog.txt
r3097514 r3144219 1 1 *** MWB HubSpot for WooCommerce Changelog *** 2 2024-06-04 - version 1.5.6 2 2024-08-30 - version 1.5.7 3 * Fix - Bulk line item update. 4 5 2024-06-05 - version 1.5.6 3 6 * Fix - Deal Update Fix for HPOS. 4 7 -
makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwoo-ajax-handler.php
r3068352 r3144219 1393 1393 $contact_vid = json_decode( $response['body'] ); 1394 1394 $hs_id = explode( 'ID: ', $contact_vid->message ); 1395 $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contact ); 1395 1396 update_user_meta( $user_id, 'hubwoo_user_vid', $hs_id[1] ); 1396 1397 update_user_meta( $user_id, 'hubwoo_pro_user_data_change', 'synced' ); … … 1737 1738 $contact_vid = json_decode( $response['body'] ); 1738 1739 $hs_id = explode( 'ID: ', $contact_vid->message ); 1740 $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contacts ); 1739 1741 $order->update_meta_data('hubwoo_user_vid', $hs_id[1]); 1740 1742 $order->update_meta_data('hubwoo_pro_guest_order', 'synced'); … … 1812 1814 if ( $flag ) { 1813 1815 1814 $deal_name = '#' . $order _id;1816 $deal_name = '#' . $order->get_order_number(); 1815 1817 1816 1818 $user_detail['first_name'] = $order->get_billing_first_name(); -
makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwoo.php
r3097514 r3144219 72 72 } else { 73 73 74 $this->version = '1.5. 6';74 $this->version = '1.5.7'; 75 75 } 76 76 … … 556 556 if ( self::is_setup_completed() ) { 557 557 558 return get_option( 'hubwoo_pro_version', '1.5. 6' );558 return get_option( 'hubwoo_pro_version', '1.5.7' ); 559 559 } else { 560 560 -
makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwoodatasync.php
r3097514 r3144219 281 281 } 282 282 283 $guest_user_properties = apply_filters( 'hubwoo_map_ecomm_guest_CONTACT_properties', $guest_user_properties, $order_id ); 284 283 285 $guest_user_properties_data = array( 284 286 'email' => $guest_email, -
makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwooecommpropertycallbacks.php
r3046221 r3144219 345 345 } 346 346 } 347 347 348 $deal_stage = self::hubwoo_get_valid_deal_stage( 'wc-' . $status ); 348 349 -
makewebbetter-hubspot-for-woocommerce/trunk/includes/class-hubwooobjectproperties.php
r3097514 r3144219 103 103 $contact_vid = json_decode( $response['body'] ); 104 104 $hs_id = explode( 'ID: ', $contact_vid->message ); 105 $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contact ); 105 106 update_user_meta( $user_id, 'hubwoo_user_vid', $hs_id[1] ); 106 107 update_user_meta( $user_id, 'hubwoo_pro_user_data_change', 'synced' ); … … 196 197 $contact_vid = json_decode( $response['body'] ); 197 198 $hs_id = explode( 'ID: ', $contact_vid->message ); 199 $response = HubWooConnectionMananager::get_instance()->update_object_record( 'contacts', $hs_id[1], $contact ); 198 200 $order->update_meta_data('hubwoo_user_vid', $hs_id[1]); 199 201 $order->update_meta_data('hubwoo_pro_guest_order', 'synced'); … … 283 285 if ( $flag ) { 284 286 285 $deal_name = '#' . $order _id;287 $deal_name = '#' . $order->get_order_number(); 286 288 287 289 $user_detail['first_name'] = $order->get_billing_first_name(); … … 463 465 $deal_id = $order->get_meta('hubwoo_ecomm_deal_id', true); 464 466 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 } 494 492 if ( 1 == get_option( 'hubwoo_deals_sync_running', 0 ) ) { 495 496 493 $current_count = get_option( 'hubwoo_deals_current_sync_count', 0 ); 497 494 update_option( 'hubwoo_deals_current_sync_count', ++$current_count ); -
makewebbetter-hubspot-for-woocommerce/trunk/languages/makewebbetter-hubspot-for-woocommerce-en_US.po
r3097514 r3144219 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: MWB HubSpot for WooCommerce 1.5. 6\n"4 "POT-Creation-Date: 2024-0 6-03 11:58+0530\n"5 "PO-Revision-Date: 2024-0 6-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" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 3.4.3\n"12 "X-Generator: Poedit 2.3\n" 13 13 "X-Poedit-Basepath: .\n" 14 14 … … 126 126 msgstr "" 127 127 128 #: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:25 02128 #: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:2522 129 129 msgid "Select a time period" 130 130 msgstr "" … … 150 150 msgstr "" 151 151 152 #: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:25 25152 #: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:2545 153 153 msgid "dd-mm-yyyy" 154 154 msgstr "" … … 176 176 msgstr "" 177 177 178 #: admin/class-hubwoo-admin.php:71 5178 #: admin/class-hubwoo-admin.php:714 179 179 msgid "" 180 180 "We noticed you're using WooCommerce HPOS. To ensure compatibility with the " … … 182 182 msgstr "" 183 183 184 #: admin/class-hubwoo-admin.php:71 8184 #: admin/class-hubwoo-admin.php:717 185 185 msgid "Install Now" 186 186 msgstr "" 187 187 188 #: admin/class-hubwoo-admin.php:7 78188 #: admin/class-hubwoo-admin.php:796 189 189 #: includes/class-hubwoocontactproperties.php:225 190 190 msgid "Subscriptions Details" 191 191 msgstr "" 192 192 193 #: admin/class-hubwoo-admin.php:11 46193 #: admin/class-hubwoo-admin.php:1166 194 194 msgid "HubSpot Actions" 195 195 msgstr "" 196 196 197 #: admin/class-hubwoo-admin.php:11 62 admin/templates/hubwoo-overview.php:121197 #: admin/class-hubwoo-admin.php:1182 admin/templates/hubwoo-overview.php:121 198 198 msgid "Abandoned Cart Settings" 199 199 msgstr "" 200 200 201 #: admin/class-hubwoo-admin.php:11 68 admin/class-hubwoo-admin.php:2419202 #: admin/class-hubwoo-admin.php:24 49201 #: admin/class-hubwoo-admin.php:1188 admin/class-hubwoo-admin.php:2439 202 #: admin/class-hubwoo-admin.php:2469 203 203 msgid "Enable/Disable" 204 204 msgstr "" 205 205 206 #: admin/class-hubwoo-admin.php:11 70206 #: admin/class-hubwoo-admin.php:1190 207 207 msgid "Track Abandoned Carts" 208 208 msgstr "" 209 209 210 #: admin/class-hubwoo-admin.php:11 76210 #: admin/class-hubwoo-admin.php:1196 211 211 msgid "Guest Users " 212 212 msgstr "" 213 213 214 #: admin/class-hubwoo-admin.php:11 78214 #: admin/class-hubwoo-admin.php:1198 215 215 msgid "Track Guest Abandoned Carts" 216 216 msgstr "" 217 217 218 #: admin/class-hubwoo-admin.php:1 184218 #: admin/class-hubwoo-admin.php:1204 219 219 msgid "Delete Old Data " 220 220 msgstr "" 221 221 222 #: admin/class-hubwoo-admin.php:1 186222 #: admin/class-hubwoo-admin.php:1206 223 223 msgid "Delete Abandoned Carts Data" 224 224 msgstr "" 225 225 226 #: admin/class-hubwoo-admin.php:1 192226 #: admin/class-hubwoo-admin.php:1212 227 227 msgid "Delete Data Timer( Days )" 228 228 msgstr "" 229 229 230 #: admin/class-hubwoo-admin.php:1 195230 #: admin/class-hubwoo-admin.php:1215 231 231 msgid "Delete Abandoned cart data form woocommerce store." 232 232 msgstr "" 233 233 234 #: admin/class-hubwoo-admin.php:12 02234 #: admin/class-hubwoo-admin.php:1222 235 235 msgid "Cart Timer( Minutes )" 236 236 msgstr "" 237 237 238 #: admin/class-hubwoo-admin.php:12 05238 #: admin/class-hubwoo-admin.php:1225 239 239 msgid "" 240 240 "Set the timer for abandoned cart. Customers abandoned cart data will be " … … 242 242 msgstr "" 243 243 244 #: admin/class-hubwoo-admin.php:14 41244 #: admin/class-hubwoo-admin.php:1461 245 245 #: includes/class-hubwoocontactproperties.php:3258 246 246 msgid "Image" 247 247 msgstr "" 248 248 249 #: admin/class-hubwoo-admin.php:14 41249 #: admin/class-hubwoo-admin.php:1461 250 250 #: includes/class-hubwoocontactproperties.php:3258 251 251 msgid "Item" 252 252 msgstr "" 253 253 254 #: admin/class-hubwoo-admin.php:14 41254 #: admin/class-hubwoo-admin.php:1461 255 255 #: includes/class-hubwoocontactproperties.php:3258 256 256 msgid "Qty" 257 257 msgstr "" 258 258 259 #: admin/class-hubwoo-admin.php:14 41259 #: admin/class-hubwoo-admin.php:1461 260 260 msgid "Cost" 261 261 msgstr "" 262 262 263 #: admin/class-hubwoo-admin.php:14 41263 #: admin/class-hubwoo-admin.php:1461 264 264 #: includes/class-hubwoocontactproperties.php:3258 265 265 msgid "Total" 266 266 msgstr "" 267 267 268 #: admin/class-hubwoo-admin.php:18 02268 #: admin/class-hubwoo-admin.php:1822 269 269 #: includes/class-hubwoocontactproperties.php:2904 270 270 #: includes/class-hubwoocontactproperties.php:3001 … … 273 273 msgstr "" 274 274 275 #: admin/class-hubwoo-admin.php:18 06275 #: admin/class-hubwoo-admin.php:1826 276 276 #: includes/class-hubwoocontactproperties.php:2908 277 277 #: includes/class-hubwoocontactproperties.php:3005 … … 280 280 msgstr "" 281 281 282 #: admin/class-hubwoo-admin.php:18 30282 #: admin/class-hubwoo-admin.php:1850 283 283 #: admin/templates/hubwoo-general-settings.php:303 284 284 msgid "Plugin Settings" 285 285 msgstr "" 286 286 287 #: admin/class-hubwoo-admin.php:18 36287 #: admin/class-hubwoo-admin.php:1856 288 288 msgid "Sync with User Role" 289 289 msgstr "" 290 290 291 #: admin/class-hubwoo-admin.php:18 40291 #: admin/class-hubwoo-admin.php:1860 292 292 msgid "" 293 293 "The users with selected roles will be synced on HubSpot. Default will be all " … … 295 295 msgstr "" 296 296 297 #: admin/class-hubwoo-admin.php:18 48297 #: admin/class-hubwoo-admin.php:1868 298 298 msgid "WooCommerce Subscription" 299 299 msgstr "" 300 300 301 #: admin/class-hubwoo-admin.php:18 51301 #: admin/class-hubwoo-admin.php:1871 302 302 msgid "Enable subscriptions data sync" 303 303 msgstr "" 304 304 305 #: admin/class-hubwoo-admin.php:18 58305 #: admin/class-hubwoo-admin.php:1878 306 306 msgid "Show Checkbox on Checkout Page" 307 307 msgstr "" 308 308 309 #: admin/class-hubwoo-admin.php:18 61309 #: admin/class-hubwoo-admin.php:1881 310 310 msgid "Show Opt-In checkbox on Checkout Page" 311 311 msgstr "" 312 312 313 #: admin/class-hubwoo-admin.php:18 67313 #: admin/class-hubwoo-admin.php:1887 314 314 msgid "Checkbox Label on Checkout Page" 315 315 msgstr "" 316 316 317 #: admin/class-hubwoo-admin.php:18 70 admin/class-hubwoo-admin.php:1888317 #: admin/class-hubwoo-admin.php:1890 admin/class-hubwoo-admin.php:1908 318 318 msgid "Label to show for the checkbox" 319 319 msgstr "" 320 320 321 #: admin/class-hubwoo-admin.php:18 72 admin/class-hubwoo-admin.php:1890321 #: admin/class-hubwoo-admin.php:1892 admin/class-hubwoo-admin.php:1910 322 322 #: public/class-hubwoo-public.php:198 public/class-hubwoo-public.php:219 323 323 msgid "Subscribe" 324 324 msgstr "" 325 325 326 #: admin/class-hubwoo-admin.php:18 76326 #: admin/class-hubwoo-admin.php:1896 327 327 msgid "Show Checkbox on My Account Page" 328 328 msgstr "" 329 329 330 #: admin/class-hubwoo-admin.php:18 79330 #: admin/class-hubwoo-admin.php:1899 331 331 msgid "Show Opt-In checkbox on My Account Page (Registration form)" 332 332 msgstr "" 333 333 334 #: admin/class-hubwoo-admin.php:1 885334 #: admin/class-hubwoo-admin.php:1905 335 335 msgid "Checkbox Label on My Account Page" 336 336 msgstr "" 337 337 338 #: admin/class-hubwoo-admin.php:1 894338 #: admin/class-hubwoo-admin.php:1914 339 339 msgid "Calculate ROI for the Selected Status" 340 340 msgstr "" 341 341 342 #: admin/class-hubwoo-admin.php:1 898342 #: admin/class-hubwoo-admin.php:1918 343 343 msgid "" 344 344 "Select an order status from the dropdown for which the new order property " … … 346 346 msgstr "" 347 347 348 #: admin/class-hubwoo-admin.php:24 12348 #: admin/class-hubwoo-admin.php:2432 349 349 msgid "Apply your settings for Deals and its stages" 350 350 msgstr "" 351 351 352 #: admin/class-hubwoo-admin.php:24 21352 #: admin/class-hubwoo-admin.php:2441 353 353 msgid "Allow to sync new deals" 354 354 msgstr "" 355 355 356 #: admin/class-hubwoo-admin.php:24 28356 #: admin/class-hubwoo-admin.php:2448 357 357 msgid "Days required to close a deal" 358 358 msgstr "" 359 359 360 #: admin/class-hubwoo-admin.php:24 31360 #: admin/class-hubwoo-admin.php:2451 361 361 msgid "" 362 362 "set the minimum number of days in which the pending/open deals can be closed/" … … 364 364 msgstr "" 365 365 366 #: admin/class-hubwoo-admin.php:24 39366 #: admin/class-hubwoo-admin.php:2459 367 367 msgid "Winning Deal Stages" 368 368 msgstr "" 369 369 370 #: admin/class-hubwoo-admin.php:24 43370 #: admin/class-hubwoo-admin.php:2463 371 371 msgid "" 372 372 "select the deal stages of ecommerce pipeline which are won according to your " … … 375 375 msgstr "" 376 376 377 #: admin/class-hubwoo-admin.php:24 51377 #: admin/class-hubwoo-admin.php:2471 378 378 msgid "Allow to associate deal and company" 379 379 msgstr "" 380 380 381 #: admin/class-hubwoo-admin.php:24 58381 #: admin/class-hubwoo-admin.php:2478 382 382 msgid "Enable Multi Currency\tSync" 383 383 msgstr "" 384 384 385 #: admin/class-hubwoo-admin.php:24 60385 #: admin/class-hubwoo-admin.php:2480 386 386 msgid "Enable to sync currency if you are using multi currency on your site." 387 387 msgstr "" 388 388 389 #: admin/class-hubwoo-admin.php:2 485389 #: admin/class-hubwoo-admin.php:2505 390 390 msgid "Export your old orders as Deals on HubSpot" 391 391 msgstr "" 392 392 393 #: admin/class-hubwoo-admin.php:2 492393 #: admin/class-hubwoo-admin.php:2512 394 394 msgid "Select order status" 395 395 msgstr "" 396 396 397 #: admin/class-hubwoo-admin.php:2 495397 #: admin/class-hubwoo-admin.php:2515 398 398 msgid "" 399 399 "Select a order status from the dropdown and all orders for the selected " … … 401 401 msgstr "" 402 402 403 #: admin/class-hubwoo-admin.php:25 04403 #: admin/class-hubwoo-admin.php:2524 404 404 msgid " Date range for orders" 405 405 msgstr "" 406 406 407 #: admin/class-hubwoo-admin.php:25 10407 #: admin/class-hubwoo-admin.php:2530 408 408 msgid "Orders from date" 409 409 msgstr "" 410 410 411 #: admin/class-hubwoo-admin.php:25 15411 #: admin/class-hubwoo-admin.php:2535 412 412 msgid "From which date you want to sync the orders, select that date" 413 413 msgstr "" 414 414 415 #: admin/class-hubwoo-admin.php:25 21415 #: admin/class-hubwoo-admin.php:2541 416 416 msgid "Orders up to date" 417 417 msgstr "" 418 418 419 #: admin/class-hubwoo-admin.php:25 26419 #: admin/class-hubwoo-admin.php:2546 420 420 msgid "Up to which date you want to sync the orders, select that date" 421 421 msgstr "" 422 422 423 #: admin/class-hubwoo-admin.php:3 182423 #: admin/class-hubwoo-admin.php:3202 424 424 #: includes/class-hubwoocontactproperties.php:409 425 425 msgid "Customer Source Store" -
makewebbetter-hubspot-for-woocommerce/trunk/languages/makewebbetter-hubspot-for-woocommerce.pot
r3097514 r3144219 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: MWB HubSpot for WooCommerce 1.5. 6\n"5 "POT-Creation-Date: 2024-0 6-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" 6 6 "PO-Revision-Date: 2024-03-05 15:13+0530\n" 7 7 "Last-Translator: \n" … … 11 11 "Content-Type: text/plain; charset=UTF-8\n" 12 12 "Content-Transfer-Encoding: 8bit\n" 13 "X-Generator: Poedit 3.4.3\n"13 "X-Generator: Poedit 2.3\n" 14 14 "X-Poedit-Basepath: ..\n" 15 15 "X-Poedit-SourceCharset: UTF-8\n" … … 132 132 msgstr "" 133 133 134 #: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:25 02134 #: admin/class-hubwoo-admin.php:333 admin/class-hubwoo-admin.php:2522 135 135 msgid "Select a time period" 136 136 msgstr "" … … 156 156 msgstr "" 157 157 158 #: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:25 25158 #: admin/class-hubwoo-admin.php:358 admin/class-hubwoo-admin.php:2545 159 159 msgid "dd-mm-yyyy" 160 160 msgstr "" … … 182 182 msgstr "" 183 183 184 #: admin/class-hubwoo-admin.php:71 5184 #: admin/class-hubwoo-admin.php:714 185 185 msgid "" 186 186 "We noticed you're using WooCommerce HPOS. To ensure compatibility with the " … … 188 188 msgstr "" 189 189 190 #: admin/class-hubwoo-admin.php:71 8190 #: admin/class-hubwoo-admin.php:717 191 191 msgid "Install Now" 192 192 msgstr "" 193 193 194 #: admin/class-hubwoo-admin.php:7 78194 #: admin/class-hubwoo-admin.php:796 195 195 #: includes/class-hubwoocontactproperties.php:225 196 196 msgid "Subscriptions Details" 197 197 msgstr "" 198 198 199 #: admin/class-hubwoo-admin.php:11 46199 #: admin/class-hubwoo-admin.php:1166 200 200 msgid "HubSpot Actions" 201 201 msgstr "" 202 202 203 #: admin/class-hubwoo-admin.php:11 62 admin/templates/hubwoo-overview.php:121203 #: admin/class-hubwoo-admin.php:1182 admin/templates/hubwoo-overview.php:121 204 204 msgid "Abandoned Cart Settings" 205 205 msgstr "" 206 206 207 #: admin/class-hubwoo-admin.php:11 68 admin/class-hubwoo-admin.php:2419208 #: admin/class-hubwoo-admin.php:24 49207 #: admin/class-hubwoo-admin.php:1188 admin/class-hubwoo-admin.php:2439 208 #: admin/class-hubwoo-admin.php:2469 209 209 msgid "Enable/Disable" 210 210 msgstr "" 211 211 212 #: admin/class-hubwoo-admin.php:11 70212 #: admin/class-hubwoo-admin.php:1190 213 213 msgid "Track Abandoned Carts" 214 214 msgstr "" 215 215 216 #: admin/class-hubwoo-admin.php:11 76216 #: admin/class-hubwoo-admin.php:1196 217 217 msgid "Guest Users " 218 218 msgstr "" 219 219 220 #: admin/class-hubwoo-admin.php:11 78220 #: admin/class-hubwoo-admin.php:1198 221 221 msgid "Track Guest Abandoned Carts" 222 222 msgstr "" 223 223 224 #: admin/class-hubwoo-admin.php:1 184224 #: admin/class-hubwoo-admin.php:1204 225 225 msgid "Delete Old Data " 226 226 msgstr "" 227 227 228 #: admin/class-hubwoo-admin.php:1 186228 #: admin/class-hubwoo-admin.php:1206 229 229 msgid "Delete Abandoned Carts Data" 230 230 msgstr "" 231 231 232 #: admin/class-hubwoo-admin.php:1 192232 #: admin/class-hubwoo-admin.php:1212 233 233 msgid "Delete Data Timer( Days )" 234 234 msgstr "" 235 235 236 #: admin/class-hubwoo-admin.php:1 195236 #: admin/class-hubwoo-admin.php:1215 237 237 msgid "Delete Abandoned cart data form woocommerce store." 238 238 msgstr "" 239 239 240 #: admin/class-hubwoo-admin.php:12 02240 #: admin/class-hubwoo-admin.php:1222 241 241 msgid "Cart Timer( Minutes )" 242 242 msgstr "" 243 243 244 #: admin/class-hubwoo-admin.php:12 05244 #: admin/class-hubwoo-admin.php:1225 245 245 msgid "" 246 246 "Set the timer for abandoned cart. Customers abandoned cart data will be " … … 248 248 msgstr "" 249 249 250 #: admin/class-hubwoo-admin.php:14 41250 #: admin/class-hubwoo-admin.php:1461 251 251 #: includes/class-hubwoocontactproperties.php:3258 252 252 msgid "Image" 253 253 msgstr "" 254 254 255 #: admin/class-hubwoo-admin.php:14 41255 #: admin/class-hubwoo-admin.php:1461 256 256 #: includes/class-hubwoocontactproperties.php:3258 257 257 msgid "Item" 258 258 msgstr "" 259 259 260 #: admin/class-hubwoo-admin.php:14 41260 #: admin/class-hubwoo-admin.php:1461 261 261 #: includes/class-hubwoocontactproperties.php:3258 262 262 msgid "Qty" 263 263 msgstr "" 264 264 265 #: admin/class-hubwoo-admin.php:14 41265 #: admin/class-hubwoo-admin.php:1461 266 266 msgid "Cost" 267 267 msgstr "" 268 268 269 #: admin/class-hubwoo-admin.php:14 41269 #: admin/class-hubwoo-admin.php:1461 270 270 #: includes/class-hubwoocontactproperties.php:3258 271 271 msgid "Total" 272 272 msgstr "" 273 273 274 #: admin/class-hubwoo-admin.php:18 02274 #: admin/class-hubwoo-admin.php:1822 275 275 #: includes/class-hubwoocontactproperties.php:2904 276 276 #: includes/class-hubwoocontactproperties.php:3001 … … 279 279 msgstr "" 280 280 281 #: admin/class-hubwoo-admin.php:18 06281 #: admin/class-hubwoo-admin.php:1826 282 282 #: includes/class-hubwoocontactproperties.php:2908 283 283 #: includes/class-hubwoocontactproperties.php:3005 … … 286 286 msgstr "" 287 287 288 #: admin/class-hubwoo-admin.php:18 30288 #: admin/class-hubwoo-admin.php:1850 289 289 #: admin/templates/hubwoo-general-settings.php:303 290 290 msgid "Plugin Settings" 291 291 msgstr "" 292 292 293 #: admin/class-hubwoo-admin.php:18 36293 #: admin/class-hubwoo-admin.php:1856 294 294 msgid "Sync with User Role" 295 295 msgstr "" 296 296 297 #: admin/class-hubwoo-admin.php:18 40297 #: admin/class-hubwoo-admin.php:1860 298 298 msgid "" 299 299 "The users with selected roles will be synced on HubSpot. Default will be all " … … 301 301 msgstr "" 302 302 303 #: admin/class-hubwoo-admin.php:18 48303 #: admin/class-hubwoo-admin.php:1868 304 304 msgid "WooCommerce Subscription" 305 305 msgstr "" 306 306 307 #: admin/class-hubwoo-admin.php:18 51307 #: admin/class-hubwoo-admin.php:1871 308 308 msgid "Enable subscriptions data sync" 309 309 msgstr "" 310 310 311 #: admin/class-hubwoo-admin.php:18 58311 #: admin/class-hubwoo-admin.php:1878 312 312 msgid "Show Checkbox on Checkout Page" 313 313 msgstr "" 314 314 315 #: admin/class-hubwoo-admin.php:18 61315 #: admin/class-hubwoo-admin.php:1881 316 316 msgid "Show Opt-In checkbox on Checkout Page" 317 317 msgstr "" 318 318 319 #: admin/class-hubwoo-admin.php:18 67319 #: admin/class-hubwoo-admin.php:1887 320 320 msgid "Checkbox Label on Checkout Page" 321 321 msgstr "" 322 322 323 #: admin/class-hubwoo-admin.php:18 70 admin/class-hubwoo-admin.php:1888323 #: admin/class-hubwoo-admin.php:1890 admin/class-hubwoo-admin.php:1908 324 324 msgid "Label to show for the checkbox" 325 325 msgstr "" 326 326 327 #: admin/class-hubwoo-admin.php:18 72 admin/class-hubwoo-admin.php:1890327 #: admin/class-hubwoo-admin.php:1892 admin/class-hubwoo-admin.php:1910 328 328 #: public/class-hubwoo-public.php:198 public/class-hubwoo-public.php:219 329 329 msgid "Subscribe" 330 330 msgstr "" 331 331 332 #: admin/class-hubwoo-admin.php:18 76332 #: admin/class-hubwoo-admin.php:1896 333 333 msgid "Show Checkbox on My Account Page" 334 334 msgstr "" 335 335 336 #: admin/class-hubwoo-admin.php:18 79336 #: admin/class-hubwoo-admin.php:1899 337 337 msgid "Show Opt-In checkbox on My Account Page (Registration form)" 338 338 msgstr "" 339 339 340 #: admin/class-hubwoo-admin.php:1 885340 #: admin/class-hubwoo-admin.php:1905 341 341 msgid "Checkbox Label on My Account Page" 342 342 msgstr "" 343 343 344 #: admin/class-hubwoo-admin.php:1 894344 #: admin/class-hubwoo-admin.php:1914 345 345 msgid "Calculate ROI for the Selected Status" 346 346 msgstr "" 347 347 348 #: admin/class-hubwoo-admin.php:1 898348 #: admin/class-hubwoo-admin.php:1918 349 349 msgid "" 350 350 "Select an order status from the dropdown for which the new order property " … … 352 352 msgstr "" 353 353 354 #: admin/class-hubwoo-admin.php:24 12354 #: admin/class-hubwoo-admin.php:2432 355 355 msgid "Apply your settings for Deals and its stages" 356 356 msgstr "" 357 357 358 #: admin/class-hubwoo-admin.php:24 21358 #: admin/class-hubwoo-admin.php:2441 359 359 msgid "Allow to sync new deals" 360 360 msgstr "" 361 361 362 #: admin/class-hubwoo-admin.php:24 28362 #: admin/class-hubwoo-admin.php:2448 363 363 msgid "Days required to close a deal" 364 364 msgstr "" 365 365 366 #: admin/class-hubwoo-admin.php:24 31366 #: admin/class-hubwoo-admin.php:2451 367 367 msgid "" 368 368 "set the minimum number of days in which the pending/open deals can be closed/" … … 370 370 msgstr "" 371 371 372 #: admin/class-hubwoo-admin.php:24 39372 #: admin/class-hubwoo-admin.php:2459 373 373 msgid "Winning Deal Stages" 374 374 msgstr "" 375 375 376 #: admin/class-hubwoo-admin.php:24 43376 #: admin/class-hubwoo-admin.php:2463 377 377 msgid "" 378 378 "select the deal stages of ecommerce pipeline which are won according to your " … … 381 381 msgstr "" 382 382 383 #: admin/class-hubwoo-admin.php:24 51383 #: admin/class-hubwoo-admin.php:2471 384 384 msgid "Allow to associate deal and company" 385 385 msgstr "" 386 386 387 #: admin/class-hubwoo-admin.php:24 58387 #: admin/class-hubwoo-admin.php:2478 388 388 msgid "Enable Multi Currency\tSync" 389 389 msgstr "" 390 390 391 #: admin/class-hubwoo-admin.php:24 60391 #: admin/class-hubwoo-admin.php:2480 392 392 msgid "Enable to sync currency if you are using multi currency on your site." 393 393 msgstr "" 394 394 395 #: admin/class-hubwoo-admin.php:2 485395 #: admin/class-hubwoo-admin.php:2505 396 396 msgid "Export your old orders as Deals on HubSpot" 397 397 msgstr "" 398 398 399 #: admin/class-hubwoo-admin.php:2 492399 #: admin/class-hubwoo-admin.php:2512 400 400 msgid "Select order status" 401 401 msgstr "" 402 402 403 #: admin/class-hubwoo-admin.php:2 495403 #: admin/class-hubwoo-admin.php:2515 404 404 msgid "" 405 405 "Select a order status from the dropdown and all orders for the selected " … … 407 407 msgstr "" 408 408 409 #: admin/class-hubwoo-admin.php:25 04409 #: admin/class-hubwoo-admin.php:2524 410 410 msgid " Date range for orders" 411 411 msgstr "" 412 412 413 #: admin/class-hubwoo-admin.php:25 10413 #: admin/class-hubwoo-admin.php:2530 414 414 msgid "Orders from date" 415 415 msgstr "" 416 416 417 #: admin/class-hubwoo-admin.php:25 15417 #: admin/class-hubwoo-admin.php:2535 418 418 msgid "From which date you want to sync the orders, select that date" 419 419 msgstr "" 420 420 421 #: admin/class-hubwoo-admin.php:25 21421 #: admin/class-hubwoo-admin.php:2541 422 422 msgid "Orders up to date" 423 423 msgstr "" 424 424 425 #: admin/class-hubwoo-admin.php:25 26425 #: admin/class-hubwoo-admin.php:2546 426 426 msgid "Up to which date you want to sync the orders, select that date" 427 427 msgstr "" 428 428 429 #: admin/class-hubwoo-admin.php:3 182429 #: admin/class-hubwoo-admin.php:3202 430 430 #: includes/class-hubwoocontactproperties.php:409 431 431 msgid "Customer Source Store" -
makewebbetter-hubspot-for-woocommerce/trunk/makewebbetter-hubspot-for-woocommerce.php
r3097514 r3144219 16 16 * Plugin URI: https://wordpress.org/plugins/makewebbetter-hubspot-for-woocommerce 17 17 * Description: Integrate WooCommerce with HubSpot’s free CRM, abandoned cart tracking, email marketing, marketing automation, analytics & more. 18 * Version: 1.5. 618 * Version: 1.5.7 19 19 * Requires at least: 4.4.0 20 * Tested up to: 6. 5.320 * Tested up to: 6.6.1 21 21 * WC requires at least: 3.5.0 22 * WC tested up to: 8.9.122 * WC tested up to: 9.2.3 23 23 * Author: MakeWebBetter 24 24 * Author URI: http://www.makewebbetter.com/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend … … 110 110 hubwoo_pro_define( 'HUBWOO_ABSPATH', dirname( __FILE__ ) . '/' ); 111 111 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' ); 113 113 hubwoo_pro_define( 'HUBWOO_PLUGINS_PATH', plugin_dir_path( __DIR__ ) ); 114 114 hubwoo_pro_define( 'HUBWOO_CLIENT_ID', '769fa3e6-79b1-412d-b69c-6b8242b2c62a' ); -
makewebbetter-hubspot-for-woocommerce/trunk/readme.txt
r3097514 r3144219 4 4 Tags: abandoned cart, email marketing, marketing automation, woocommerce, hubspot 5 5 Requires at least: 4.4.0 6 Tested up to: 6. 5.26 Tested up to: 6.6.1 7 7 WC requires at least: 3.5.0 8 WC tested up to: 8.7.08 WC tested up to: 9.2.3 9 9 Requires PHP: 5.1 10 Stable tag: 1.5. 610 Stable tag: 1.5.7 11 11 License: GPLv3 or later 12 12 License URI: http://www.gnu.org/licenses/gpl-3.0.txt … … 142 142 143 143 == 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 = 145 147 * Fix - Deal Update Fix for HPOS. 146 148 = 1.5.5 - Released on 12 April 2024 = … … 226 228 == Upgrade Notice == 227 229 228 = 1.5. 6 - Released on 04 June2024 =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.