WooCommerce - Version 3.6.3

Version Description

  • 2019-05-16 =
  • Fix - State not required for Serbia. #23430
  • Fix - # symbol in product category name broke product export. #23454
  • Fix - XML export caused fatal errors due to Action Scheduler adding invalid characters. #23456
  • Fix - Invalid password messages when password contains backslashes. #23499
  • Fix - Dismiss button in WC admin notices "legacy_shipping" and "no_shipping_methods" were not clickable. #23517
  • Fix - WC $wpdb->tables not defined early enough. #23529
  • Fix - Tracks JS not printed on last page of OBW. #23519
  • Fix - Error in the logic used to build fields for external products when the query string contained full-stops, pluses or spaces in the values of the parameters. #23535
  • Fix - UI page width issue on OBW. #23526
  • Fix - Customer address not auto populated on checkout after registering and filling in address prior. #23528
  • Fix - Available WooCommerce extension updates not showing in System Status report. #23601
  • Fix - wc_change_get_terms_defaults throwing undefined index notices. #23611
  • Fix - System Status report alway showing checkmark next to Connected to WooCommerce.com. #23617
  • Fix - State field never populated when loading customer address on order via wp-admin. #23615
  • Fix - Order sorting not working in wp-admin when Yoast SEO active. #23590
  • Fix - Attribute ordering not working in product edit screen. #23625
  • Fix - Tracks reporting incorrect order totals due to refunds being excluded in calculation. #23671
  • Fix - Reload state options when creating a new order in WP-Admin and changing country. #23602
  • Fix - New webhooks not showing in the webhook admin list page when you have object caching enabled. #23713
  • Fix - Missing coupon expiry dates, restore coupons expiry_date backward compatibility. #23714
  • Fix - Bulk stock update could result in all products set to out of stock, change ensures consistency between db and Product instance in memory. #23534
  • Fix - Dashboard stats widget including unpublished products in out of stock and low in stock counts. #23734
  • Fix - PayPal payment not captured when you transition an order from a custom order status to completed or processing. #23634
  • Tweak - Confirm before saving empty list of countries to sell to in settings. #23597
  • Tweak - Change default WC API version used when creating webhooks to the latest WC API version. #23515
  • Tweak - Report a bug button now points to the new issue template in GitHub. #23580
  • Tweak - Do not display taxes in totals columns when taxes not enabled. #23579
  • Tweak - WC WP-CLI upgrade routine mimics wp-admin upgrade when no updates found by setting DB version to current version. #23666
  • Tweak - Template caching now cache based on WC_VERSION to avoid issues with symlinked plugin folders. #23546
  • Tweak - OBW payment gateway selection defaults. #23690
  • Localization - Add Serbia locale defaults. #23428
  • Localization - Add address format for Serbia. #23429
Download this release

Release Info

Developer claudiosanches
Plugin Icon 128x128 WooCommerce
Version 3.6.3
Comparing to
See all releases

Code changes from version 3.6.2 to 3.6.3

Files changed (53) hide show
  1. assets/css/activation-rtl.css +1 -1
  2. assets/css/activation.css +1 -1
  3. assets/css/activation.scss +0 -31
  4. assets/css/wc-setup-rtl.css +1 -1
  5. assets/css/wc-setup.css +1 -1
  6. assets/css/wc-setup.scss +227 -76
  7. assets/images/klarna-black.png +0 -0
  8. assets/images/square-black.png +0 -0
  9. assets/js/admin/meta-boxes-order.js +1 -1
  10. assets/js/admin/meta-boxes-order.min.js +1 -1
  11. assets/js/admin/meta-boxes-product-variation.js +25 -13
  12. assets/js/admin/meta-boxes-product-variation.min.js +1 -1
  13. assets/js/admin/reports.js +3 -2
  14. assets/js/admin/reports.min.js +1 -1
  15. assets/js/admin/settings.js +19 -3
  16. assets/js/admin/settings.min.js +1 -1
  17. i18n/languages/woocommerce.pot +511 -505
  18. i18n/locale-info.php +10 -0
  19. i18n/states.php +1 -0
  20. includes/abstracts/abstract-wc-order.php +1 -1
  21. includes/admin/class-wc-admin-dashboard.php +11 -2
  22. includes/admin/class-wc-admin-help.php +1 -1
  23. includes/admin/class-wc-admin-post-types.php +3 -3
  24. includes/admin/class-wc-admin-settings.php +9 -6
  25. includes/admin/class-wc-admin-setup-wizard.php +30 -13
  26. includes/admin/class-wc-admin.php +20 -3
  27. includes/admin/list-tables/class-wc-admin-list-table-products.php +4 -4
  28. includes/admin/meta-boxes/views/html-product-attribute.php +1 -1
  29. includes/admin/views/html-admin-page-status-report.php +1 -1
  30. includes/admin/views/html-notice-legacy-shipping.php +18 -6
  31. includes/admin/views/html-notice-no-shipping-methods.php +23 -7
  32. includes/api/v2/class-wc-rest-system-status-v2-controller.php +2 -2
  33. includes/class-wc-checkout.php +1 -1
  34. includes/class-wc-countries.php +7 -0
  35. includes/class-wc-customer.php +4 -4
  36. includes/class-wc-form-handler.php +1 -1
  37. includes/class-wc-tracker.php +1 -1
  38. includes/class-wc-webhook.php +1 -1
  39. includes/class-woocommerce.php +22 -12
  40. includes/cli/class-wc-cli-update-command.php +2 -0
  41. includes/data-stores/class-wc-coupon-data-store-cpt.php +1 -1
  42. includes/data-stores/class-wc-data-store-wp.php +2 -0
  43. includes/data-stores/class-wc-product-data-store-cpt.php +86 -29
  44. includes/data-stores/class-wc-webhook-data-store.php +3 -3
  45. includes/gateways/paypal/class-wc-gateway-paypal.php +3 -3
  46. includes/tracks/events/class-wc-admin-setup-wizard-tracking.php +1 -0
  47. includes/wc-core-functions.php +2 -2
  48. includes/wc-product-functions.php +5 -1
  49. includes/wc-stock-functions.php +19 -13
  50. includes/wc-template-functions.php +5 -3
  51. includes/wc-term-functions.php +1 -1
  52. readme.txt +49 -5
  53. woocommerce.php +1 -1
assets/css/activation-rtl.css CHANGED
@@ -1 +1 @@
1
- div.woocommerce-message{overflow:hidden;position:relative;border-right-color:#cc99c2!important}.woocommerce-message .button-primary,p.woocommerce-actions .button-primary{background:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;color:#fff;text-shadow:0 -1px 1px #a36597,-1px 0 1px #a36597,0 1px 1px #a36597,1px 0 1px #a36597}.woocommerce-message .button-primary:active,.woocommerce-message .button-primary:focus,.woocommerce-message .button-primary:hover,p.woocommerce-actions .button-primary:active,p.woocommerce-actions .button-primary:focus,p.woocommerce-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.woocommerce-message a.woocommerce-message-close,p.woocommerce-actions a.woocommerce-message-close{position:static;float:left;top:0;left:0;padding:0 28px 10px 15px;margin-top:-10px;font-size:13px;line-height:1.23076923;text-decoration:none}.woocommerce-message a.woocommerce-message-close::before,p.woocommerce-actions a.woocommerce-message-close::before{position:relative;top:18px;right:-20px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.woocommerce-message .button-primary,.woocommerce-message .button-secondary,p.woocommerce-actions .button-primary,p.woocommerce-actions .button-secondary{text-decoration:none!important}.woocommerce-message .twitter-share-button,p.woocommerce-actions .twitter-share-button{margin-top:-3px;margin-right:3px;vertical-align:middle}.woocommerce-about-text,p.woocommerce-actions{margin-bottom:1em!important}div.woocommerce-legacy-shipping-notice,div.woocommerce-no-shipping-methods-notice{overflow:hidden;padding:1px 12px}div.woocommerce-legacy-shipping-notice p,div.woocommerce-no-shipping-methods-notice p{position:relative;z-index:1;line-height:1.5em;margin:12px 0}div.woocommerce-legacy-shipping-notice p.main,div.woocommerce-no-shipping-methods-notice p.main{font-size:1.1em}div.woocommerce-legacy-shipping-notice::before,div.woocommerce-no-shipping-methods-notice::before{content:"\e01b";font-family:WooCommerce;text-align:center;line-height:1;color:#f7f1f6;display:block;width:1em;font-size:20em;top:36px;left:12px;position:absolute}
1
+ div.woocommerce-message{overflow:hidden;position:relative;border-right-color:#cc99c2!important}.woocommerce-message .button-primary,p.woocommerce-actions .button-primary{background:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;color:#fff;text-shadow:0 -1px 1px #a36597,-1px 0 1px #a36597,0 1px 1px #a36597,1px 0 1px #a36597}.woocommerce-message .button-primary:active,.woocommerce-message .button-primary:focus,.woocommerce-message .button-primary:hover,p.woocommerce-actions .button-primary:active,p.woocommerce-actions .button-primary:focus,p.woocommerce-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.woocommerce-message a.woocommerce-message-close,p.woocommerce-actions a.woocommerce-message-close{position:static;float:left;top:0;left:0;padding:0 28px 10px 15px;margin-top:-10px;font-size:13px;line-height:1.23076923;text-decoration:none}.woocommerce-message a.woocommerce-message-close::before,p.woocommerce-actions a.woocommerce-message-close::before{position:relative;top:18px;right:-20px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.woocommerce-message .button-primary,.woocommerce-message .button-secondary,p.woocommerce-actions .button-primary,p.woocommerce-actions .button-secondary{text-decoration:none!important}.woocommerce-message .twitter-share-button,p.woocommerce-actions .twitter-share-button{margin-top:-3px;margin-right:3px;vertical-align:middle}.woocommerce-about-text,p.woocommerce-actions{margin-bottom:1em!important}
assets/css/activation.css CHANGED
@@ -1 +1 @@
1
- div.woocommerce-message{overflow:hidden;position:relative;border-left-color:#cc99c2!important}.woocommerce-message .button-primary,p.woocommerce-actions .button-primary{background:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;color:#fff;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597}.woocommerce-message .button-primary:active,.woocommerce-message .button-primary:focus,.woocommerce-message .button-primary:hover,p.woocommerce-actions .button-primary:active,p.woocommerce-actions .button-primary:focus,p.woocommerce-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.woocommerce-message a.woocommerce-message-close,p.woocommerce-actions a.woocommerce-message-close{position:static;float:right;top:0;right:0;padding:0 15px 10px 28px;margin-top:-10px;font-size:13px;line-height:1.23076923;text-decoration:none}.woocommerce-message a.woocommerce-message-close::before,p.woocommerce-actions a.woocommerce-message-close::before{position:relative;top:18px;left:-20px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.woocommerce-message .button-primary,.woocommerce-message .button-secondary,p.woocommerce-actions .button-primary,p.woocommerce-actions .button-secondary{text-decoration:none!important}.woocommerce-message .twitter-share-button,p.woocommerce-actions .twitter-share-button{margin-top:-3px;margin-left:3px;vertical-align:middle}.woocommerce-about-text,p.woocommerce-actions{margin-bottom:1em!important}div.woocommerce-legacy-shipping-notice,div.woocommerce-no-shipping-methods-notice{overflow:hidden;padding:1px 12px}div.woocommerce-legacy-shipping-notice p,div.woocommerce-no-shipping-methods-notice p{position:relative;z-index:1;line-height:1.5em;margin:12px 0}div.woocommerce-legacy-shipping-notice p.main,div.woocommerce-no-shipping-methods-notice p.main{font-size:1.1em}div.woocommerce-legacy-shipping-notice::before,div.woocommerce-no-shipping-methods-notice::before{content:"\e01b";font-family:WooCommerce;text-align:center;line-height:1;color:#f7f1f6;display:block;width:1em;font-size:20em;top:36px;right:12px;position:absolute}
1
+ div.woocommerce-message{overflow:hidden;position:relative;border-left-color:#cc99c2!important}.woocommerce-message .button-primary,p.woocommerce-actions .button-primary{background:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;color:#fff;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597}.woocommerce-message .button-primary:active,.woocommerce-message .button-primary:focus,.woocommerce-message .button-primary:hover,p.woocommerce-actions .button-primary:active,p.woocommerce-actions .button-primary:focus,p.woocommerce-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.woocommerce-message a.woocommerce-message-close,p.woocommerce-actions a.woocommerce-message-close{position:static;float:right;top:0;right:0;padding:0 15px 10px 28px;margin-top:-10px;font-size:13px;line-height:1.23076923;text-decoration:none}.woocommerce-message a.woocommerce-message-close::before,p.woocommerce-actions a.woocommerce-message-close::before{position:relative;top:18px;left:-20px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.woocommerce-message .button-primary,.woocommerce-message .button-secondary,p.woocommerce-actions .button-primary,p.woocommerce-actions .button-secondary{text-decoration:none!important}.woocommerce-message .twitter-share-button,p.woocommerce-actions .twitter-share-button{margin-top:-3px;margin-left:3px;vertical-align:middle}.woocommerce-about-text,p.woocommerce-actions{margin-bottom:1em!important}
assets/css/activation.scss CHANGED
@@ -66,34 +66,3 @@ p.woocommerce-actions,
66
  .woocommerce-about-text {
67
  margin-bottom: 1em !important;
68
  }
69
-
70
- div.woocommerce-legacy-shipping-notice,
71
- div.woocommerce-no-shipping-methods-notice {
72
- overflow: hidden;
73
- padding: 1px 12px;
74
-
75
- p {
76
- position: relative;
77
- z-index: 1;
78
- line-height: 1.5em;
79
- margin: 12px 0;
80
-
81
- &.main {
82
- font-size: 1.1em;
83
- }
84
- }
85
-
86
- &::before {
87
- content: "\e01b";
88
- font-family: "WooCommerce";
89
- text-align: center;
90
- line-height: 1;
91
- color: #f7f1f6;
92
- display: block;
93
- width: 1em;
94
- font-size: 20em;
95
- top: 36px;
96
- right: 12px;
97
- position: absolute;
98
- }
99
- }
66
  .woocommerce-about-text {
67
  margin-bottom: 1em !important;
68
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/wc-setup-rtl.css CHANGED
@@ -1 +1 @@
1
- @charset "UTF-8";body{margin:65px auto 24px;box-shadow:none;background:#f1f1f1;padding:0}#wc-logo{border:0;margin:0 0 24px;padding:0;text-align:center}#wc-logo img{max-width:30%}.wc-setup{text-align:center}.wc-setup .select2-container{text-align:right;width:100%}.wc-setup .hidden{display:none}.wc-setup-content{box-shadow:0 1px 3px rgba(0,0,0,.13);padding:2em;margin:0 0 20px;background:#fff;overflow:hidden;zoom:1;text-align:right}.wc-setup-content h1,.wc-setup-content h2,.wc-setup-content h3,.wc-setup-content table{margin:0 0 20px;border:0;padding:0;color:#666;clear:none;font-weight:500}.wc-setup-content p{margin:20px 0;font-size:1em;line-height:1.75em;color:#666}.wc-setup-content table{font-size:1em;line-height:1.75em;color:#666}.wc-setup-content a{color:#a16696}.wc-setup-content a:focus,.wc-setup-content a:hover{color:#111}.wc-setup-content .form-table th{width:35%;vertical-align:top;font-weight:400}.wc-setup-content .form-table td{vertical-align:top}.wc-setup-content .form-table td input,.wc-setup-content .form-table td select{width:100%;box-sizing:border-box}.wc-setup-content .form-table td input[size]{width:auto}.wc-setup-content .form-table td .description{line-height:1.5em;display:block;margin-top:.25em;color:#999;font-style:italic}.wc-setup-content .form-table td .input-checkbox,.wc-setup-content .form-table td .input-radio{width:auto;box-sizing:inherit;padding:inherit;margin:0 0 0 .5em;box-shadow:none}.wc-setup-content .form-table .section_title td{padding:0}.wc-setup-content .form-table .section_title td h2,.wc-setup-content .form-table .section_title td p{margin:12px 0 0}.wc-setup-content .form-table td,.wc-setup-content .form-table th{padding:12px 0;margin:0;border:0}.wc-setup-content .form-table td:first-child,.wc-setup-content .form-table th:first-child{padding-left:1em}.wc-setup-content table.tax-rates{width:100%;font-size:.92em}.wc-setup-content table.tax-rates th{padding:0;text-align:center;width:auto;vertical-align:middle}.wc-setup-content table.tax-rates td{border:1px solid #f5f5f5;padding:6px;text-align:center;vertical-align:middle}.wc-setup-content table.tax-rates td input{outline:0;border:0;padding:0;box-shadow:none;text-align:center;width:100%}.wc-setup-content table.tax-rates td.sort{cursor:move;color:#ccc}.wc-setup-content table.tax-rates td.sort::before{content:'\f333';font-family:dashicons}.wc-setup-content table.tax-rates td.readonly{background:#f5f5f5}.wc-setup-content table.tax-rates .add{padding:1em 1em 0 0;line-height:1em;font-size:1em;width:0;margin:6px 0 0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .add::before{content:'\f502';font-family:dashicons;position:absolute;right:0;top:0}.wc-setup-content table.tax-rates .remove{padding:1em 1em 0 0;line-height:1em;font-size:1em;width:0;margin:0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .remove::before{content:'\f182';font-family:dashicons;position:absolute;right:0;top:0}.wc-setup-content .wc-setup-pages{width:100%;border-top:1px solid #eee}.wc-setup-content .wc-setup-pages thead th{display:none}.wc-setup-content .wc-setup-pages .page-name{width:30%;font-weight:700}.wc-setup-content .wc-setup-pages td,.wc-setup-content .wc-setup-pages th{padding:14px 0;border-bottom:1px solid #eee}.wc-setup-content .wc-setup-pages td:first-child,.wc-setup-content .wc-setup-pages th:first-child{padding-left:9px}.wc-setup-content .wc-setup-pages th{padding-top:0}.wc-setup-content .wc-setup-pages .page-options p{color:#777;margin:6px 24px 0 0;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p input{vertical-align:middle;margin:1px 0 0;height:1.75em;width:1.75em;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p label{line-height:1}@media screen and (max-width:782px){.wc-setup-content .form-table tbody th{width:auto}}.wc-setup-content .twitter-share-button{float:left}.wc-setup-content .wc-setup-next-steps{overflow:hidden;margin:0 0 24px;padding-bottom:2px}.wc-setup-content .wc-setup-next-steps h2{margin-bottom:12px}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-first{float:right;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-last{float:left;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps ul{padding:0 0 0 2em;list-style:none outside;margin:0}.wc-setup-content .wc-setup-next-steps ul li a{display:block;padding:0 0 .75em}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button{background-color:#f7f7f7;border-color:#ccc;color:#23282d;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #ccc;text-shadow:-1px 0 1px #eee,0 1px 1px #eee;font-size:1em;height:auto;line-height:1.75em;margin:0 0 .75em;opacity:1;padding:1em;text-align:center}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:hover{background:#f5f5f5;border-color:#aaa}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary{color:#fff;background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,-1px 0 1px #a36597,0 1px 1px #a36597,1px 0 1px #a36597}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:hover{color:#fff;background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content .wc-setup-next-steps ul li a::before{color:#82878c;font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 0 0 10px;top:1px;position:relative;text-decoration:none!important;vertical-align:top}.wc-setup-content .wc-setup-next-steps ul .learn-more a::before{content:'\f105'}.wc-setup-content .wc-setup-next-steps ul .video-walkthrough a::before{content:'\f126'}.wc-setup-content .wc-setup-next-steps ul .newsletter a::before{content:'\f465'}.wc-setup-content .updated,.wc-setup-content .woocommerce-newsletter{padding:24px 24px 0;margin:0 0 24px;overflow:hidden;background:#f5f5f5}.wc-setup-content .updated p,.wc-setup-content .woocommerce-newsletter p{padding:0;margin:0 0 12px}.wc-setup-content .updated form,.wc-setup-content .updated p:last-child,.wc-setup-content .woocommerce-newsletter form,.wc-setup-content .woocommerce-newsletter p:last-child{margin:0 0 24px}.wc-setup-content .woocommerce-tracker{margin:24px 0;border:1px solid #eee;padding:20px;border-radius:4px;overflow:hidden}.wc-setup-content .woocommerce-tracker p{font-size:14px;line-height:1.5em}.wc-setup-content .woocommerce-tracker .checkbox{line-height:24px;font-weight:500;font-size:1em;margin-top:0;margin-bottom:20px}.wc-setup-content .checkbox input[type=checkbox]{opacity:0;position:absolute;right:-9999px}.wc-setup-content .checkbox label{position:relative;display:inline-block;padding-right:28px}.wc-setup-content .checkbox label:after,.wc-setup-content .checkbox label:before{position:absolute;content:"";display:inline-block}.wc-setup-content .checkbox label:before{height:16px;width:16px;right:0;top:3px;border:1px solid #aaa;background-color:#fff;border-radius:3px}.wc-setup-content .checkbox label:after{height:5px;width:9px;border-right:2px solid;border-bottom:2px solid;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);right:4px;top:7px;color:#fff}.wc-setup-content .checkbox input[type=checkbox]+label::after{content:none}.wc-setup-content .checkbox input[type=checkbox]:checked+label::after{content:""}.wc-setup-content .checkbox input[type=checkbox]:focus+label::before{outline:#3b99fc auto 5px}.wc-setup-content .checkbox input[type=checkbox]:checked+label::before{background:#935687;border-color:#935687}.wc-setup-steps{padding:0 0 24px;margin:0;list-style:none outside;overflow:hidden;color:#ccc;width:100%;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex}.wc-setup-steps li{width:100%;float:right;padding:0 0 .8em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.wc-setup-steps li a{color:#a16696;text-decoration:none;padding:1.5em;margin:-1.5em;position:relative;z-index:1}.wc-setup-steps li a:focus,.wc-setup-steps li a:hover{color:#111;text-decoration:underline}.wc-setup-steps li::before{content:'';border:4px solid #ccc;border-radius:100%;width:4px;height:4px;position:absolute;bottom:0;right:50%;margin-right:-6px;margin-bottom:-8px;background:#fff}.wc-setup-steps li.active{border-color:#a16696;color:#a16696;font-weight:700}.wc-setup-steps li.active::before{border-color:#a16696}.wc-setup-steps li.done{border-color:#a16696;color:#a16696}.wc-setup-steps li.done::before{border-color:#a16696;background:#a16696}.wc-setup .wc-setup-actions{overflow:hidden;margin:20px 0 0;position:relative}.wc-setup .wc-setup-actions .button{font-size:1.25em;padding:.5em 1em;line-height:1em;margin-left:.5em;margin-bottom:2px;height:auto;border-radius:4px}.wc-setup .wc-setup-actions .button-primary{background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,-1px 0 1px #a36597,0 1px 1px #a36597,1px 0 1px #a36597;margin:0;opacity:1}.wc-setup .wc-setup-actions .button-primary:active,.wc-setup .wc-setup-actions .button-primary:focus,.wc-setup .wc-setup-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content p:last-child{margin-bottom:0}.wc-setup-content p.store-setup{margin-top:0}.wc-setup-footer-links{font-size:.85em;color:#7b7b7b;margin:1.18em auto;display:inline-block;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro{padding:40px 40px 0;background:#f5f5f5;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro img{margin:40px 0 0 0;width:100%;display:block}.wc-wizard-storefront .wc-wizard-storefront-features{list-style:none outside;margin:0 0 20px;padding:0 30px 0 0;overflow:hidden}.wc-wizard-storefront .wc-wizard-storefront-feature{margin:0;padding:20px 2em 20px 30px;width:50%;box-sizing:border-box}.wc-wizard-storefront .wc-wizard-storefront-feature::before{margin-right:-2em;position:absolute}.wc-wizard-storefront .wc-wizard-storefront-feature.first{clear:both;float:right}.wc-wizard-storefront .wc-wizard-storefront-feature.last{float:left}.wc-wizard-storefront .wc-wizard-storefront-feature__bulletproof::before{content:'🔒'}.wc-wizard-storefront .wc-wizard-storefront-feature__mobile::before{content:'📱'}.wc-wizard-storefront .wc-wizard-storefront-feature__accessibility::before{content:'👓'}.wc-wizard-storefront .wc-wizard-storefront-feature__search::before{content:'🔍'}.wc-wizard-storefront .wc-wizard-storefront-feature__compatibility::before{content:'🔧'}.wc-wizard-storefront .wc-wizard-storefront-feature__extendable::before{content:'🎨'}.wc-wizard-services{border:1px solid #eee;padding:0;margin:0 0 1em;list-style:none outside;border-radius:4px;overflow:hidden}.wc-wizard-services p{margin:0 0 1em 0;padding:0;font-size:1em;line-height:1.5em}.wc-wizard-service-item,.wc-wizard-services-list-toggle{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0;border-bottom:1px solid #eee;color:#666;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-service-item:last-child,.wc-wizard-services-list-toggle:last-child{border-bottom:0}.wc-wizard-service-item .payment-gateway-fee,.wc-wizard-services-list-toggle .payment-gateway-fee{color:#a6a6a6}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-flex-basis:0;flex-basis:0;min-width:160px;text-align:center;font-weight:700;padding:2em 0;-webkit-align-self:stretch;align-self:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.wc-wizard-payment-gateway-form .wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-payment-gateway-form .wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{max-width:75px}.wc-wizard-service-item.stripe-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.stripe-logo .wc-wizard-service-name img{padding:8px 0}.wc-wizard-service-item.paypal-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.paypal-logo .wc-wizard-service-name img{max-width:87px;padding:2px 0}.wc-wizard-service-item.klarna-logo .wc-wizard-service-name,.wc-wizard-services-list-toggle.klarna-logo .wc-wizard-service-name{background:#000}.wc-wizard-service-item.klarna-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.klarna-logo .wc-wizard-service-name img{max-width:87px;padding:12px 0}.wc-wizard-service-item.square-logo .wc-wizard-service-name,.wc-wizard-services-list-toggle.square-logo .wc-wizard-service-name{background:#000}.wc-wizard-service-item.square-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.square-logo .wc-wizard-service-name img{max-width:95px;padding:12px 0}.wc-wizard-service-item.eway-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.eway-logo .wc-wizard-service-name img{max-width:87px}.wc-wizard-service-item.payfast-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.payfast-logo .wc-wizard-service-name img{max-width:140px}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;padding:20px}.wc-wizard-service-item .wc-wizard-service-description p,.wc-wizard-services-list-toggle .wc-wizard-service-description p{margin-bottom:1em}.wc-wizard-service-item .wc-wizard-service-description p:last-child,.wc-wizard-services-list-toggle .wc-wizard-service-description p:last-child{margin-bottom:0}.wc-wizard-service-item .wc-wizard-service-description .wc-wizard-service-settings-description,.wc-wizard-services-list-toggle .wc-wizard-service-description .wc-wizard-service-settings-description{display:block;font-style:italic;color:#999}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-flex-basis:0;flex-basis:0;min-width:75px;text-align:center;cursor:pointer;padding:2em 0;position:relative;max-height:1.5em;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-toggle,.wc-wizard-services-list-toggle .wc-wizard-service-toggle{height:16px;width:32px;border:2px solid #935687;background-color:#935687;display:inline-block;text-indent:-9999px;border-radius:10em;position:relative}.wc-wizard-service-item .wc-wizard-service-toggle input[type=checkbox],.wc-wizard-services-list-toggle .wc-wizard-service-toggle input[type=checkbox]{display:none}.wc-wizard-service-item .wc-wizard-service-toggle:before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle:before{content:"";display:block;width:16px;height:16px;background:#fff;position:absolute;top:0;left:0;border-radius:100%}.wc-wizard-service-item .wc-wizard-service-toggle.disabled,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled{border-color:#999;background-color:#999}.wc-wizard-service-item .wc-wizard-service-toggle.disabled:before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled:before{left:auto;right:0}.wc-wizard-service-item .wc-wizard-service-settings,.wc-wizard-services-list-toggle .wc-wizard-service-settings{display:none;margin-top:.75em;margin-bottom:0;cursor:default}.wc-wizard-service-item .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.checked .wc-wizard-service-settings,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings{display:inline-block}.wc-wizard-service-item.checked .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.closed,.wc-wizard-services-list-toggle.closed{border-bottom:0}.wc-wizard-services-list-toggle{cursor:pointer}.wc-wizard-services-list-toggle .wc-wizard-service-enable::before{content:"\f343";font-family:dashicons;visibility:initial;color:#666;font-size:25px;margin-top:-7px;margin-right:-5px;position:absolute;visibility:visible}.wc-wizard-services-list-toggle.closed .wc-wizard-service-enable::before{content:"\f347"}.wc-wizard-services-list-toggle .wc-wizard-service-enable input{visibility:hidden;position:relative}.wc-wizard-services.manual .wc-wizard-service-item{display:none}.wc-wizard-services.shipping{margin:0}.wc-wizard-services.shipping .wc-wizard-service-name{font-weight:400;text-align:right;-webkit-box-align:center;-webkit-align-items:center;align-items:center;max-height:5em;padding:0}.wc-wizard-services.shipping .wc-wizard-service-item{padding-right:2em;padding-top:.67em}.wc-wizard-services.shipping .wc-wizard-service-item:first-child{border-bottom:0;padding-bottom:0;font-weight:700}.wc-wizard-services.shipping .wc-wizard-service-item:first-child .wc-wizard-service-name{font-weight:700}.wc-wizard-services.shipping .shipping-method-setting,.wc-wizard-services.shipping .wc-wizard-shipping-method-select{display:-webkit-box;display:-webkit-flex;display:flex}.wc-wizard-services.shipping .shipping-method-setting.hide,.wc-wizard-services.shipping .wc-wizard-shipping-method-select.hide{display:none}.wc-wizard-services.shipping .shipping-method-setting input,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown{margin-left:2em;margin-bottom:1em}.wc-wizard-services.shipping .shipping-method-setting input .select2,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown .select2{min-width:130px}.wc-wizard-services.shipping .wc-wizard-service-description{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;color:#a6a6a6}.wc-wizard-services.shipping .wc-wizard-service-item:not(:first-child) .wc-wizard-service-description{font-size:.92em;padding-bottom:10px}.wc-wizard-services.shipping .shipping-method-setting input{width:95px;border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:28px;padding-right:8px;padding-left:24px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-services.shipping .shipping-method-description,.wc-wizard-services.shipping .shipping-method-setting .description{color:#7e7e7e;font-size:.9em}.wc-wizard-services.shipping .shipping-method-setting input::-webkit-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input:-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::placeholder{color:#e1e1e1}.wc-setup-shipping-units p{line-height:1.5em;font-size:13px;margin-bottom:.25em;text-align:center}.wc-setup-shipping-units .wc-setup-shipping-unit{margin-bottom:1.75em}.wc-setup-shipping-units .wc-setup-shipping-unit .select2{min-width:125px;top:-5px}.hide{display:none}.wc-wizard-features{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;list-style:none;padding:0}.wc-wizard-features .wc-wizard-feature-item{-webkit-flex-basis:calc(50% - 4em - 3px);flex-basis:calc(50% - 4em - 3px);border:1px solid #eee;padding:2em}.wc-wizard-features .wc-wizard-feature-item:nth-child(1){border-radius:0 4px 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(2){border-right:0;border-radius:4px 0 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(3){border-top:0;border-radius:0 0 4px 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(4){border-top:0;border-right:0;border-radius:0 0 0 4px}.wc-wizard-features p.wc-wizard-feature-description,.wc-wizard-features p.wc-wizard-feature-name{margin:0;line-height:1.5em}h3.jetpack-reasons{text-align:center;margin:3em 0 1em 0;font-size:14px}.jetpack-logo,.wcs-notice{display:block;margin:1.75em auto 2em auto;max-height:175px}.activate-splash .jetpack-logo{width:170px;margin-bottom:0}.activate-splash .wcs-notice{margin-top:1em;padding-right:57px}.step{text-align:center}.wc-setup .wc-setup-actions .button{font-weight:300;font-size:16px;padding:1em 2em;box-shadow:none;min-width:12em;min-width:auto;margin-top:10px}.wc-setup .wc-setup-actions .button:active,.wc-setup .wc-setup-actions .button:focus,.wc-setup .wc-setup-actions .button:hover{box-shadow:none}.wc-setup .wc-setup-actions .plugin-install-info{display:block;font-style:italic;color:#999;font-size:14px;line-height:1.5em;margin:5px 0}.wc-setup .wc-setup-actions .plugin-install-info>*{display:block}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item::after{content:', '}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item:last-of-type::after{content:'. '}.wc-setup .wc-setup-actions .plugin-install-info a{white-space:nowrap}.wc-setup .wc-setup-actions .plugin-install-info a:not(:hover):not(:focus){color:inherit}.plugin-install-source{background:rgba(187,119,174,.15)}.plugin-install-source:not(.wc-wizard-service-item){box-shadow:0 0 0 10px rgba(187,119,174,.15)}.location-prompt{color:#666;font-size:13px;font-weight:500;margin-bottom:.5em;margin-top:.85em;display:inline-block}.location-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;width:calc(100% - 8px - 24px - 2px);padding-right:8px;padding-left:24px;font-size:16px;color:#444;background-color:#fff;display:inline-block}.location-input.dropdown{width:100%}.address-step .select2{min-width:100%}.store-address-container .city-and-postcode{display:-webkit-box;display:-webkit-flex;display:flex}.store-address-container .city-and-postcode div{-webkit-flex-basis:50%;flex-basis:50%;margin-left:1em}.store-address-container .city-and-postcode div:last-of-type{margin-left:0}.store-address-container .select2-container,.store-address-container input[type=text],.store-address-container select{margin-bottom:10px}.product-type-container{margin-top:14px;margin-bottom:1px}#woocommerce_sell_in_person{margin-right:0}.wc-wizard-service-settings .payment-email-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;padding:0 8px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-service-settings .payment-email-input[disabled]{color:#aaa}.newsletter-form-container{display:-webkit-box;display:-webkit-flex;display:flex}.newsletter-form-container .newsletter-form-email{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:42px;padding:0 8px;font-size:16px;color:#666;background-color:#fff;display:inline-block;margin-left:6px;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.newsletter-form-container .newsletter-form-button-container{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.wc-setup .wc-setup-actions .button.newsletter-form-button{height:42px;padding:0 1em;margin:0}.wc-wizard-next-steps{border:1px solid #eee;border-radius:4px;list-style:none;padding:0}.wc-wizard-next-steps li{padding:0}.wc-wizard-next-steps .wc-wizard-next-step-item{display:-webkit-box;display:-webkit-flex;display:flex;border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-next-step-item:first-child{border-top:0}.wc-wizard-next-steps .wc-wizard-next-step-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;margin:1.5em}.wc-wizard-next-steps .wc-wizard-next-step-action{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-next-steps .wc-wizard-next-step-action .button{margin:1em 1.5em}.wc-wizard-next-steps p.next-step-heading{margin:0;font-size:.95em;font-weight:400;font-variant:all-petite-caps}.wc-wizard-next-steps p.next-step-extra-info{margin:0}.wc-wizard-next-steps h3.next-step-description{margin:0;font-size:16px;font-weight:600}.wc-wizard-next-steps .wc-wizard-additional-steps{border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions{margin:0 0 1.5em 0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button{font-size:15px;margin:1em 1.5em 1em 0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button::last-child{margin-left:1.5em}p.next-steps-help-text{color:#9f9f9f;padding:0 2em;text-align:center;font-size:.9em}p.jetpack-terms{font-size:.8em;text-align:center;max-width:480px;margin:0 auto;line-height:1.5em}.woocommerce-error{background:#ffe6e5;border-color:#ffc5c2;padding:1em;margin-bottom:1em}.woocommerce-error p{margin-top:0;margin-bottom:.5em;color:#444}.woocommerce-error a{color:#ff645c}.woocommerce-error .reconnect-reminder{font-size:.85em}.woocommerce-error .wc-setup-actions .button{font-size:14px}.wc-wizard-service-setting-ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.wc-wizard-service-setting-ppec_paypal_reroute_requests .payment-checkbox-input,.wc-wizard-service-setting-stripe_create_account .payment-checkbox-input{-webkit-box-ordinal-group:2;-webkit-order:1;order:1;margin-top:5px;margin-right:0;margin-left:0;width:1.5em}.wc-wizard-service-setting-ppec_paypal_reroute_requests .ppec_paypal_reroute_requests,.wc-wizard-service-setting-ppec_paypal_reroute_requests .stripe_create_account,.wc-wizard-service-setting-stripe_create_account .ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account .stripe_create_account{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;margin-right:.3em}.wc-wizard-service-setting-ppec_paypal_email,.wc-wizard-service-setting-stripe_email{margin-top:.75em;margin-right:1.5em}.wc-wizard-service-setting-ppec_paypal_email label.ppec_paypal_email,.wc-wizard-service-setting-ppec_paypal_email label.stripe_email,.wc-wizard-service-setting-stripe_email label.ppec_paypal_email,.wc-wizard-service-setting-stripe_email label.stripe_email{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.wc-wizard-service-setting-ppec_paypal_email input.payment-email-input,.wc-wizard-service-setting-stripe_email input.payment-email-input{box-sizing:border-box;margin-bottom:.5em;width:100%;height:32px}.wc-setup-content .recommended-step{border:1px solid #ebebeb;border-radius:4px;padding:2.5em}.wc-setup-content .recommended-item{list-style:none}.wc-setup-content .recommended-item:last-child label{margin-bottom:0}.wc-setup-content .recommended-item label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:1.5em}.wc-setup-content .recommended-item label:after,.wc-setup-content .recommended-item label:before{top:auto}.wc-setup-content .recommended-item label:after{margin-top:-1.5px}.wc-setup-content .recommended-item .recommended-item-icon{border:1px solid #fff;border-radius:7px;height:3.5em;margin-left:1em;margin-right:4px}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-storefront_theme{background-color:#f4a224;max-height:3em;max-width:3em;padding:.25em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-automated_taxes{background-color:#d0011b;max-height:1.75em;padding:.875em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-mailchimp{background-color:#ffe01b;height:2em;padding:.75em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-woocommerce_services{background-color:#f0f0f0;max-height:1.5em;padding:1.3em .7em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-shipstation{background-color:#f0f0f0;padding:.3em}.wc-setup-content .recommended-item .recommended-item-description-container h3{font-size:15px;font-weight:700;letter-spacing:.5px;margin-bottom:0}.wc-setup-content .recommended-item .recommended-item-description-container p{margin-top:0;line-height:1.5em}.wc-wizard-service-info{padding:1em 2em;background-color:#fafafa}.help_tip{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.wc-setup #tiptip_content{background:#5f6973}.wc-setup #tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:#5f6973}.wc-setup-shipping-recommended{border-bottom:1px solid #eee;margin-top:0;padding:30px 0}@media only screen and (max-width:400px){#wc-logo img{max-width:80%}.wc-setup-steps{display:none}.store-address-container .city-and-postcode{display:block}.store-address-container .city-and-postcode div{margin-left:0}.wc-wizard-service-item,.wc-wizard-services-list-toggle{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;padding:20px 0 0}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{padding:20px 20px 0;text-align:right;-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{margin:0}.newsletter-form-container{display:block}.newsletter-form-container .newsletter-form-email{display:block;box-sizing:border-box;width:100%;margin-bottom:10px}.newsletter-form-container .button.newsletter-form-button{float:right}.wc-wizard-next-steps .wc-wizard-next-step-item{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-action p{margin:0}}
1
+ @charset "UTF-8";body{margin:65px auto 24px;box-shadow:none;background:#f1f1f1;padding:0}#wc-logo{border:0;margin:0 0 24px;padding:0;text-align:center}#wc-logo img{max-width:30%}.wc-setup{text-align:center}.wc-setup .select2-container{text-align:right;width:auto}.wc-setup .hidden{display:none}.wc-setup-content{box-shadow:0 1px 3px rgba(0,0,0,.13);padding:2em;margin:0 0 20px;background:#fff;overflow:hidden;zoom:1;text-align:right}.wc-setup-content h1,.wc-setup-content h2,.wc-setup-content h3,.wc-setup-content table{margin:0 0 20px;border:0;padding:0;color:#666;clear:none;font-weight:500}.wc-setup-content p{margin:20px 0;font-size:1em;line-height:1.75em;color:#666}.wc-setup-content table{font-size:1em;line-height:1.75em;color:#666}.wc-setup-content a{color:#a16696}.wc-setup-content a:focus,.wc-setup-content a:hover{color:#111}.wc-setup-content .form-table th{width:35%;vertical-align:top;font-weight:400}.wc-setup-content .form-table td{vertical-align:top}.wc-setup-content .form-table td input,.wc-setup-content .form-table td select{width:100%;box-sizing:border-box}.wc-setup-content .form-table td input[size]{width:auto}.wc-setup-content .form-table td .description{line-height:1.5em;display:block;margin-top:.25em;color:#999;font-style:italic}.wc-setup-content .form-table td .input-checkbox,.wc-setup-content .form-table td .input-radio{width:auto;box-sizing:inherit;padding:inherit;margin:0 0 0 .5em;box-shadow:none}.wc-setup-content .form-table .section_title td{padding:0}.wc-setup-content .form-table .section_title td h2,.wc-setup-content .form-table .section_title td p{margin:12px 0 0}.wc-setup-content .form-table td,.wc-setup-content .form-table th{padding:12px 0;margin:0;border:0}.wc-setup-content .form-table td:first-child,.wc-setup-content .form-table th:first-child{padding-left:1em}.wc-setup-content table.tax-rates{width:100%;font-size:.92em}.wc-setup-content table.tax-rates th{padding:0;text-align:center;width:auto;vertical-align:middle}.wc-setup-content table.tax-rates td{border:1px solid #f5f5f5;padding:6px;text-align:center;vertical-align:middle}.wc-setup-content table.tax-rates td input{outline:0;border:0;padding:0;box-shadow:none;text-align:center;width:100%}.wc-setup-content table.tax-rates td.sort{cursor:move;color:#ccc}.wc-setup-content table.tax-rates td.sort::before{content:"\f333";font-family:dashicons}.wc-setup-content table.tax-rates td.readonly{background:#f5f5f5}.wc-setup-content table.tax-rates .add{padding:1em 1em 0 0;line-height:1em;font-size:1em;width:0;margin:6px 0 0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .add::before{content:"\f502";font-family:dashicons;position:absolute;right:0;top:0}.wc-setup-content table.tax-rates .remove{padding:1em 1em 0 0;line-height:1em;font-size:1em;width:0;margin:0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .remove::before{content:"\f182";font-family:dashicons;position:absolute;right:0;top:0}.wc-setup-content .wc-setup-pages{width:100%;border-top:1px solid #eee}.wc-setup-content .wc-setup-pages thead th{display:none}.wc-setup-content .wc-setup-pages .page-name{width:30%;font-weight:700}.wc-setup-content .wc-setup-pages td,.wc-setup-content .wc-setup-pages th{padding:14px 0;border-bottom:1px solid #eee}.wc-setup-content .wc-setup-pages td:first-child,.wc-setup-content .wc-setup-pages th:first-child{padding-left:9px}.wc-setup-content .wc-setup-pages th{padding-top:0}.wc-setup-content .wc-setup-pages .page-options p{color:#777;margin:6px 24px 0 0;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p input{vertical-align:middle;margin:1px 0 0;height:1.75em;width:1.75em;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p label{line-height:1}@media screen and (max-width:782px){.wc-setup-content .form-table tbody th{width:auto}}.wc-setup-content .twitter-share-button{float:left}.wc-setup-content .wc-setup-next-steps{overflow:hidden;margin:0 0 24px;padding-bottom:2px}.wc-setup-content .wc-setup-next-steps h2{margin-bottom:12px}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-first{float:right;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-last{float:left;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps ul{padding:0 0 0 2em;list-style:none outside;margin:0}.wc-setup-content .wc-setup-next-steps ul li a{display:block;padding:0 0 .75em}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button{background-color:#f7f7f7;border-color:#ccc;color:#23282d;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #ccc;text-shadow:-1px 0 1px #eee,0 1px 1px #eee;font-size:1em;height:auto;line-height:1.75em;margin:0 0 .75em;opacity:1;padding:1em;text-align:center}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:hover{background:#f5f5f5;border-color:#aaa}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary{color:#fff;background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,-1px 0 1px #a36597,0 1px 1px #a36597,1px 0 1px #a36597}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:hover{color:#fff;background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content .wc-setup-next-steps ul li a::before{color:#82878c;font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 0 0 10px;top:1px;position:relative;text-decoration:none!important;vertical-align:top}.wc-setup-content .wc-setup-next-steps ul .learn-more a::before{content:"\f105"}.wc-setup-content .wc-setup-next-steps ul .video-walkthrough a::before{content:"\f126"}.wc-setup-content .wc-setup-next-steps ul .newsletter a::before{content:"\f465"}.wc-setup-content .updated,.wc-setup-content .woocommerce-newsletter{padding:24px 24px 0;margin:0 0 24px;overflow:hidden;background:#f5f5f5}.wc-setup-content .updated p,.wc-setup-content .woocommerce-newsletter p{padding:0;margin:0 0 12px}.wc-setup-content .updated form,.wc-setup-content .updated p:last-child,.wc-setup-content .woocommerce-newsletter form,.wc-setup-content .woocommerce-newsletter p:last-child{margin:0 0 24px}.wc-setup-content .woocommerce-tracker{margin:24px 0;border:1px solid #eee;padding:20px;border-radius:4px;overflow:hidden}.wc-setup-content .woocommerce-tracker p{font-size:14px;line-height:1.5em}.wc-setup-content .woocommerce-tracker .checkbox{line-height:24px;font-weight:500;font-size:1em;margin-top:0;margin-bottom:20px}.wc-setup-content .checkbox input[type=checkbox]{opacity:0;position:absolute;right:-9999px}.wc-setup-content .checkbox label{position:relative;display:inline-block;padding-right:28px}.wc-setup-content .checkbox label::after,.wc-setup-content .checkbox label::before{position:absolute;content:"";display:inline-block}.wc-setup-content .checkbox label::before{height:16px;width:16px;right:0;top:3px;border:1px solid #aaa;background-color:#fff;border-radius:3px}.wc-setup-content .checkbox label::after{height:5px;width:9px;border-right:2px solid;border-bottom:2px solid;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);right:4px;top:7px;color:#fff}.wc-setup-content .checkbox input[type=checkbox]+label::after{content:none}.wc-setup-content .checkbox input[type=checkbox]:checked+label::after{content:""}.wc-setup-content .checkbox input[type=checkbox]:focus+label::before{outline:#3b99fc auto 5px}.wc-setup-content .checkbox input[type=checkbox]:checked+label::before{background:#935687;border-color:#935687}.wc-setup-steps{padding:0 0 24px;margin:0;list-style:none outside;overflow:hidden;color:#ccc;width:100%;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex}.wc-setup-steps li{width:100%;float:right;padding:0 0 .8em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.wc-setup-steps li a{color:#a16696;text-decoration:none;padding:1.5em;margin:-1.5em;position:relative;z-index:1}.wc-setup-steps li a:focus,.wc-setup-steps li a:hover{color:#111;text-decoration:underline}.wc-setup-steps li::before{content:"";border:4px solid #ccc;border-radius:100%;width:4px;height:4px;position:absolute;bottom:0;right:50%;margin-right:-6px;margin-bottom:-8px;background:#fff}.wc-setup-steps li.active{border-color:#a16696;color:#a16696;font-weight:700}.wc-setup-steps li.active::before{border-color:#a16696}.wc-setup-steps li.done{border-color:#a16696;color:#a16696}.wc-setup-steps li.done::before{border-color:#a16696;background:#a16696}.wc-setup .wc-setup-actions{overflow:hidden;margin:20px 0 0;position:relative}.wc-setup .wc-setup-actions .button{font-size:1.25em;padding:.5em 1em;line-height:1em;margin-left:.5em;margin-bottom:2px;height:auto;border-radius:4px}.wc-setup .wc-setup-actions .button-primary{background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,-1px 0 1px #a36597,0 1px 1px #a36597,1px 0 1px #a36597;margin:0;opacity:1}.wc-setup .wc-setup-actions .button-primary:active,.wc-setup .wc-setup-actions .button-primary:focus,.wc-setup .wc-setup-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content p:last-child{margin-bottom:0}.wc-setup-content p.store-setup{margin-top:0}.wc-setup-footer-links{font-size:.85em;color:#7b7b7b;margin:1.18em auto;display:inline-block;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro{padding:40px 40px 0;background:#f5f5f5;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro img{margin:40px 0 0 0;width:100%;display:block}.wc-wizard-storefront .wc-wizard-storefront-features{list-style:none outside;margin:0 0 20px;padding:0 30px 0 0;overflow:hidden}.wc-wizard-storefront .wc-wizard-storefront-feature{margin:0;padding:20px 2em 20px 30px;width:50%;box-sizing:border-box}.wc-wizard-storefront .wc-wizard-storefront-feature::before{margin-right:-2em;position:absolute}.wc-wizard-storefront .wc-wizard-storefront-feature.first{clear:both;float:right}.wc-wizard-storefront .wc-wizard-storefront-feature.last{float:left}.wc-wizard-storefront .wc-wizard-storefront-feature__bulletproof::before{content:"🔒"}.wc-wizard-storefront .wc-wizard-storefront-feature__mobile::before{content:"📱"}.wc-wizard-storefront .wc-wizard-storefront-feature__accessibility::before{content:"👓"}.wc-wizard-storefront .wc-wizard-storefront-feature__search::before{content:"🔍"}.wc-wizard-storefront .wc-wizard-storefront-feature__compatibility::before{content:"🔧"}.wc-wizard-storefront .wc-wizard-storefront-feature__extendable::before{content:"🎨"}.wc-wizard-services{border:1px solid #eee;padding:0;margin:0 0 1em;list-style:none outside;border-radius:4px;overflow:hidden}.wc-wizard-services p{margin:0 0 1em 0;padding:0;font-size:1em;line-height:1.5em}.wc-wizard-service-item,.wc-wizard-services-list-toggle{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0;border-bottom:1px solid #eee;color:#666;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-service-item:last-child,.wc-wizard-services-list-toggle:last-child{border-bottom:0}.wc-wizard-service-item .payment-gateway-fee,.wc-wizard-services-list-toggle .payment-gateway-fee{color:#a6a6a6}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-flex-basis:0;flex-basis:0;min-width:160px;text-align:center;font-weight:700;padding:2em 0;-webkit-align-self:stretch;align-self:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.wc-wizard-payment-gateway-form .wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-payment-gateway-form .wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{max-width:75px}.wc-wizard-service-item.stripe-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.stripe-logo .wc-wizard-service-name img{padding:8px 0}.wc-wizard-service-item.paypal-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.paypal-logo .wc-wizard-service-name img{max-width:87px;padding:2px 0}.wc-wizard-service-item.klarna-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.klarna-logo .wc-wizard-service-name img{max-width:87px;padding:12px 0}.wc-wizard-service-item.square-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.square-logo .wc-wizard-service-name img{max-width:95px;padding:12px 0}.wc-wizard-service-item.eway-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.eway-logo .wc-wizard-service-name img{max-width:87px}.wc-wizard-service-item.payfast-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.payfast-logo .wc-wizard-service-name img{max-width:140px}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;padding:20px}.wc-wizard-service-item .wc-wizard-service-description p,.wc-wizard-services-list-toggle .wc-wizard-service-description p{margin-bottom:1em}.wc-wizard-service-item .wc-wizard-service-description p:last-child,.wc-wizard-services-list-toggle .wc-wizard-service-description p:last-child{margin-bottom:0}.wc-wizard-service-item .wc-wizard-service-description .wc-wizard-service-settings-description,.wc-wizard-services-list-toggle .wc-wizard-service-description .wc-wizard-service-settings-description{display:block;font-style:italic;color:#999}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-flex-basis:0;flex-basis:0;min-width:75px;text-align:center;cursor:pointer;padding:2em 0;position:relative;max-height:1.5em;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-toggle,.wc-wizard-services-list-toggle .wc-wizard-service-toggle{height:16px;width:32px;border:2px solid #935687;background-color:#935687;display:inline-block;text-indent:-9999px;border-radius:10em;position:relative}.wc-wizard-service-item .wc-wizard-service-toggle input[type=checkbox],.wc-wizard-services-list-toggle .wc-wizard-service-toggle input[type=checkbox]{display:none}.wc-wizard-service-item .wc-wizard-service-toggle::before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle::before{content:"";display:block;width:16px;height:16px;background:#fff;position:absolute;top:0;left:0;border-radius:100%}.wc-wizard-service-item .wc-wizard-service-toggle.disabled,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled{border-color:#999;background-color:#999}.wc-wizard-service-item .wc-wizard-service-toggle.disabled::before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled::before{left:auto;right:0}.wc-wizard-service-item .wc-wizard-service-settings,.wc-wizard-services-list-toggle .wc-wizard-service-settings{display:none;margin-top:.75em;margin-bottom:0;cursor:default}.wc-wizard-service-item .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.checked .wc-wizard-service-settings,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings{display:inline-block}.wc-wizard-service-item.checked .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.closed,.wc-wizard-services-list-toggle.closed{border-bottom:0}.wc-wizard-services-list-toggle{cursor:pointer}.wc-wizard-services-list-toggle .wc-wizard-service-enable::before{content:"\f343";font-family:dashicons;visibility:initial;color:#666;font-size:25px;margin-top:-7px;margin-right:-5px;position:absolute;visibility:visible}.wc-wizard-services-list-toggle.closed .wc-wizard-service-enable::before{content:"\f347"}.wc-wizard-services-list-toggle .wc-wizard-service-enable input{visibility:hidden;position:relative}.wc-wizard-services.manual .wc-wizard-service-item{display:none}.wc-wizard-services.shipping{margin:0}.wc-wizard-services.shipping .wc-wizard-service-name{font-weight:400;text-align:right;-webkit-box-align:center;-webkit-align-items:center;align-items:center;max-height:5em;padding:0}.wc-wizard-services.shipping .wc-wizard-service-item{padding-right:2em;padding-top:.67em}.wc-wizard-services.shipping .wc-wizard-service-item:first-child{border-bottom:0;padding-bottom:0;font-weight:700}.wc-wizard-services.shipping .wc-wizard-service-item:first-child .wc-wizard-service-name{font-weight:700}.wc-wizard-services.shipping .shipping-method-setting,.wc-wizard-services.shipping .wc-wizard-shipping-method-select{display:-webkit-box;display:-webkit-flex;display:flex}.wc-wizard-services.shipping .shipping-method-setting.hide,.wc-wizard-services.shipping .wc-wizard-shipping-method-select.hide{display:none}.wc-wizard-services.shipping .shipping-method-setting input,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown{margin-left:2em;margin-bottom:1em}.wc-wizard-services.shipping .shipping-method-setting input .select2,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown .select2{min-width:130px}.wc-wizard-services.shipping .wc-wizard-service-description{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;color:#a6a6a6}.wc-wizard-services.shipping .wc-wizard-service-item:not(:first-child) .wc-wizard-service-description{font-size:.92em;padding-bottom:10px}.wc-wizard-services.shipping .shipping-method-setting input{width:95px;border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:28px;padding-right:8px;padding-left:24px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-services.shipping .shipping-method-description,.wc-wizard-services.shipping .shipping-method-setting .description{color:#7e7e7e;font-size:.9em}.wc-wizard-services.shipping .shipping-method-setting input::-webkit-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input:-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::placeholder{color:#e1e1e1}.wc-setup-shipping-units p{line-height:1.5em;font-size:13px;margin-bottom:.25em;text-align:center}.wc-setup-shipping-units .wc-setup-shipping-unit{margin-bottom:1.75em}.wc-setup-shipping-units .wc-setup-shipping-unit .select2{min-width:125px;top:-5px}.hide{display:none}.wc-wizard-features{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;list-style:none;padding:0}.wc-wizard-features .wc-wizard-feature-item{-webkit-flex-basis:calc(50% - 4em - 3px);flex-basis:calc(50% - 4em - 3px);border:1px solid #eee;padding:2em}.wc-wizard-features .wc-wizard-feature-item:nth-child(1){border-radius:0 4px 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(2){border-right:0;border-radius:4px 0 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(3){border-top:0;border-radius:0 0 4px 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(4){border-top:0;border-right:0;border-radius:0 0 0 4px}.wc-wizard-features p.wc-wizard-feature-description,.wc-wizard-features p.wc-wizard-feature-name{margin:0;line-height:1.5em}h3.jetpack-reasons{text-align:center;margin:3em 0 1em 0;font-size:14px}.jetpack-logo,.wcs-notice{display:block;margin:1.75em auto 2em auto;max-height:175px}.activate-splash .jetpack-logo{width:170px;margin-bottom:0}.activate-splash .wcs-notice{margin-top:1em;padding-right:57px}.step{text-align:center}.wc-setup .wc-setup-actions .button{font-weight:300;font-size:16px;padding:1em 2em;box-shadow:none;min-width:12em;min-width:auto;margin-top:10px}.wc-setup .wc-setup-actions .button:active,.wc-setup .wc-setup-actions .button:focus,.wc-setup .wc-setup-actions .button:hover{box-shadow:none}.wc-setup .wc-setup-actions .plugin-install-info{display:block;font-style:italic;color:#999;font-size:14px;line-height:1.5em;margin:5px 0}.wc-setup .wc-setup-actions .plugin-install-info>*{display:block}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item::after{content:", "}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item:last-of-type::after{content:". "}.wc-setup .wc-setup-actions .plugin-install-info a{white-space:nowrap}.wc-setup .wc-setup-actions .plugin-install-info a:not(:hover):not(:focus){color:inherit}.plugin-install-source{background:rgba(187,119,174,.15)}.plugin-install-source:not(.wc-wizard-service-item){box-shadow:0 0 0 10px rgba(187,119,174,.15)}.location-prompt{color:#666;font-size:13px;font-weight:500;margin-bottom:.5em;margin-top:.85em;display:inline-block}.location-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;width:calc(100% - 8px - 24px - 2px);padding-right:8px;padding-left:24px;font-size:16px;color:#444;background-color:#fff;display:inline-block}.location-input.dropdown{width:100%}.address-step .select2{min-width:100%}.store-address-container .city-and-postcode{display:-webkit-box;display:-webkit-flex;display:flex}.store-address-container .city-and-postcode div{-webkit-flex-basis:50%;flex-basis:50%;margin-left:1em}.store-address-container .city-and-postcode div:last-of-type{margin-left:0}.store-address-container .select2-container,.store-address-container input[type=text],.store-address-container select{margin-bottom:10px}.product-type-container{margin-top:14px;margin-bottom:1px}#woocommerce_sell_in_person{margin-right:0}.wc-wizard-service-settings .payment-email-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;padding:0 8px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-service-settings .payment-email-input[disabled]{color:#aaa}.newsletter-form-container{display:-webkit-box;display:-webkit-flex;display:flex}.newsletter-form-container .newsletter-form-email{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:42px;padding:0 8px;font-size:16px;color:#666;background-color:#fff;display:inline-block;margin-left:6px;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.newsletter-form-container .newsletter-form-button-container{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.wc-setup .wc-setup-actions .button.newsletter-form-button{height:42px;padding:0 1em;margin:0}.wc-wizard-next-steps{border:1px solid #eee;border-radius:4px;list-style:none;padding:0}.wc-wizard-next-steps li{padding:0}.wc-wizard-next-steps .wc-wizard-next-step-item{display:-webkit-box;display:-webkit-flex;display:flex;border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-next-step-item:first-child{border-top:0}.wc-wizard-next-steps .wc-wizard-next-step-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;margin:1.5em}.wc-wizard-next-steps .wc-wizard-next-step-action{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-next-steps .wc-wizard-next-step-action .button{margin:1em 1.5em}.wc-wizard-next-steps p.next-step-heading{margin:0;font-size:.95em;font-weight:400;font-variant:all-petite-caps}.wc-wizard-next-steps p.next-step-extra-info{margin:0}.wc-wizard-next-steps h3.next-step-description{margin:0;font-size:16px;font-weight:600}.wc-wizard-next-steps .wc-wizard-additional-steps{border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions{margin:0 0 1.5em 0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button{font-size:15px;margin:1em 1.5em 1em 0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button::last-child{margin-left:1.5em}p.next-steps-help-text{color:#9f9f9f;padding:0 2em;text-align:center;font-size:.9em}p.jetpack-terms{font-size:.8em;text-align:center;max-width:480px;margin:0 auto;line-height:1.5em}.woocommerce-error{background:#ffe6e5;border-color:#ffc5c2;padding:1em;margin-bottom:1em}.woocommerce-error p{margin-top:0;margin-bottom:.5em;color:#444}.woocommerce-error a{color:#ff645c}.woocommerce-error .reconnect-reminder{font-size:.85em}.woocommerce-error .wc-setup-actions .button{font-size:14px}.wc-wizard-service-setting-ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.wc-wizard-service-setting-ppec_paypal_reroute_requests .payment-checkbox-input,.wc-wizard-service-setting-stripe_create_account .payment-checkbox-input{-webkit-box-ordinal-group:2;-webkit-order:1;order:1;margin-top:5px;margin-right:0;margin-left:0;width:1.5em}.wc-wizard-service-setting-ppec_paypal_reroute_requests .ppec_paypal_reroute_requests,.wc-wizard-service-setting-ppec_paypal_reroute_requests .stripe_create_account,.wc-wizard-service-setting-stripe_create_account .ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account .stripe_create_account{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;margin-right:.3em}.wc-wizard-service-setting-ppec_paypal_email,.wc-wizard-service-setting-stripe_email{margin-top:.75em;margin-right:1.5em}.wc-wizard-service-setting-ppec_paypal_email label.ppec_paypal_email,.wc-wizard-service-setting-ppec_paypal_email label.stripe_email,.wc-wizard-service-setting-stripe_email label.ppec_paypal_email,.wc-wizard-service-setting-stripe_email label.stripe_email{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.wc-wizard-service-setting-ppec_paypal_email input.payment-email-input,.wc-wizard-service-setting-stripe_email input.payment-email-input{box-sizing:border-box;margin-bottom:.5em;width:100%;height:32px}.wc-setup-content .recommended-step{border:1px solid #ebebeb;border-radius:4px;padding:2.5em}.wc-setup-content .recommended-item{list-style:none}.wc-setup-content .recommended-item:last-child label{margin-bottom:0}.wc-setup-content .recommended-item label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:1.5em}.wc-setup-content .recommended-item label::after,.wc-setup-content .recommended-item label::before{top:auto}.wc-setup-content .recommended-item label::after{margin-top:-1.5px}.wc-setup-content .recommended-item .recommended-item-icon{border:1px solid #fff;border-radius:7px;height:3.5em;margin-left:1em;margin-right:4px}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-storefront_theme{background-color:#f4a224;max-height:3em;max-width:3em;padding:.25em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-automated_taxes{background-color:#d0011b;max-height:1.75em;padding:.875em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-mailchimp{background-color:#ffe01b;height:2em;padding:.75em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-woocommerce_services{background-color:#f0f0f0;max-height:1.5em;padding:1.3em .7em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-shipstation{background-color:#f0f0f0;padding:.3em}.wc-setup-content .recommended-item .recommended-item-description-container h3{font-size:15px;font-weight:700;letter-spacing:.5px;margin-bottom:0}.wc-setup-content .recommended-item .recommended-item-description-container p{margin-top:0;line-height:1.5em}.wc-wizard-service-info{padding:1em 2em;background-color:#fafafa}.help_tip{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.wc-setup #tiptip_content{background:#5f6973}.wc-setup #tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:#5f6973}.wc-setup-shipping-recommended{border-bottom:1px solid #eee;margin-top:0;padding:30px 0}@media only screen and (max-width:400px){#wc-logo img{max-width:80%}.wc-setup-steps{display:none}.store-address-container .city-and-postcode{display:block}.store-address-container .city-and-postcode div{margin-left:0}.wc-wizard-service-item,.wc-wizard-services-list-toggle{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;padding:20px 0 0}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{padding:20px 20px 0;text-align:right;-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{margin:0}.newsletter-form-container{display:block}.newsletter-form-container .newsletter-form-email{display:block;box-sizing:border-box;width:100%;margin-bottom:10px}.newsletter-form-container .button.newsletter-form-button{float:right}.wc-wizard-next-steps .wc-wizard-next-step-item{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-action p{margin:0}}
assets/css/wc-setup.css CHANGED
@@ -1 +1 @@
1
- @charset "UTF-8";body{margin:65px auto 24px;box-shadow:none;background:#f1f1f1;padding:0}#wc-logo{border:0;margin:0 0 24px;padding:0;text-align:center}#wc-logo img{max-width:30%}.wc-setup{text-align:center}.wc-setup .select2-container{text-align:left;width:100%}.wc-setup .hidden{display:none}.wc-setup-content{box-shadow:0 1px 3px rgba(0,0,0,.13);padding:2em;margin:0 0 20px;background:#fff;overflow:hidden;zoom:1;text-align:left}.wc-setup-content h1,.wc-setup-content h2,.wc-setup-content h3,.wc-setup-content table{margin:0 0 20px;border:0;padding:0;color:#666;clear:none;font-weight:500}.wc-setup-content p{margin:20px 0;font-size:1em;line-height:1.75em;color:#666}.wc-setup-content table{font-size:1em;line-height:1.75em;color:#666}.wc-setup-content a{color:#a16696}.wc-setup-content a:focus,.wc-setup-content a:hover{color:#111}.wc-setup-content .form-table th{width:35%;vertical-align:top;font-weight:400}.wc-setup-content .form-table td{vertical-align:top}.wc-setup-content .form-table td input,.wc-setup-content .form-table td select{width:100%;box-sizing:border-box}.wc-setup-content .form-table td input[size]{width:auto}.wc-setup-content .form-table td .description{line-height:1.5em;display:block;margin-top:.25em;color:#999;font-style:italic}.wc-setup-content .form-table td .input-checkbox,.wc-setup-content .form-table td .input-radio{width:auto;box-sizing:inherit;padding:inherit;margin:0 .5em 0 0;box-shadow:none}.wc-setup-content .form-table .section_title td{padding:0}.wc-setup-content .form-table .section_title td h2,.wc-setup-content .form-table .section_title td p{margin:12px 0 0}.wc-setup-content .form-table td,.wc-setup-content .form-table th{padding:12px 0;margin:0;border:0}.wc-setup-content .form-table td:first-child,.wc-setup-content .form-table th:first-child{padding-right:1em}.wc-setup-content table.tax-rates{width:100%;font-size:.92em}.wc-setup-content table.tax-rates th{padding:0;text-align:center;width:auto;vertical-align:middle}.wc-setup-content table.tax-rates td{border:1px solid #f5f5f5;padding:6px;text-align:center;vertical-align:middle}.wc-setup-content table.tax-rates td input{outline:0;border:0;padding:0;box-shadow:none;text-align:center;width:100%}.wc-setup-content table.tax-rates td.sort{cursor:move;color:#ccc}.wc-setup-content table.tax-rates td.sort::before{content:'\f333';font-family:dashicons}.wc-setup-content table.tax-rates td.readonly{background:#f5f5f5}.wc-setup-content table.tax-rates .add{padding:1em 0 0 1em;line-height:1em;font-size:1em;width:0;margin:6px 0 0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .add::before{content:'\f502';font-family:dashicons;position:absolute;left:0;top:0}.wc-setup-content table.tax-rates .remove{padding:1em 0 0 1em;line-height:1em;font-size:1em;width:0;margin:0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .remove::before{content:'\f182';font-family:dashicons;position:absolute;left:0;top:0}.wc-setup-content .wc-setup-pages{width:100%;border-top:1px solid #eee}.wc-setup-content .wc-setup-pages thead th{display:none}.wc-setup-content .wc-setup-pages .page-name{width:30%;font-weight:700}.wc-setup-content .wc-setup-pages td,.wc-setup-content .wc-setup-pages th{padding:14px 0;border-bottom:1px solid #eee}.wc-setup-content .wc-setup-pages td:first-child,.wc-setup-content .wc-setup-pages th:first-child{padding-right:9px}.wc-setup-content .wc-setup-pages th{padding-top:0}.wc-setup-content .wc-setup-pages .page-options p{color:#777;margin:6px 0 0 24px;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p input{vertical-align:middle;margin:1px 0 0;height:1.75em;width:1.75em;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p label{line-height:1}@media screen and (max-width:782px){.wc-setup-content .form-table tbody th{width:auto}}.wc-setup-content .twitter-share-button{float:right}.wc-setup-content .wc-setup-next-steps{overflow:hidden;margin:0 0 24px;padding-bottom:2px}.wc-setup-content .wc-setup-next-steps h2{margin-bottom:12px}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-first{float:left;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-last{float:right;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps ul{padding:0 2em 0 0;list-style:none outside;margin:0}.wc-setup-content .wc-setup-next-steps ul li a{display:block;padding:0 0 .75em}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button{background-color:#f7f7f7;border-color:#ccc;color:#23282d;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #ccc;text-shadow:1px 0 1px #eee,0 1px 1px #eee;font-size:1em;height:auto;line-height:1.75em;margin:0 0 .75em;opacity:1;padding:1em;text-align:center}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:hover{background:#f5f5f5;border-color:#aaa}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary{color:#fff;background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:hover{color:#fff;background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content .wc-setup-next-steps ul li a::before{color:#82878c;font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 10px 0 0;top:1px;position:relative;text-decoration:none!important;vertical-align:top}.wc-setup-content .wc-setup-next-steps ul .learn-more a::before{content:'\f105'}.wc-setup-content .wc-setup-next-steps ul .video-walkthrough a::before{content:'\f126'}.wc-setup-content .wc-setup-next-steps ul .newsletter a::before{content:'\f465'}.wc-setup-content .updated,.wc-setup-content .woocommerce-newsletter{padding:24px 24px 0;margin:0 0 24px;overflow:hidden;background:#f5f5f5}.wc-setup-content .updated p,.wc-setup-content .woocommerce-newsletter p{padding:0;margin:0 0 12px}.wc-setup-content .updated form,.wc-setup-content .updated p:last-child,.wc-setup-content .woocommerce-newsletter form,.wc-setup-content .woocommerce-newsletter p:last-child{margin:0 0 24px}.wc-setup-content .woocommerce-tracker{margin:24px 0;border:1px solid #eee;padding:20px;border-radius:4px;overflow:hidden}.wc-setup-content .woocommerce-tracker p{font-size:14px;line-height:1.5em}.wc-setup-content .woocommerce-tracker .checkbox{line-height:24px;font-weight:500;font-size:1em;margin-top:0;margin-bottom:20px}.wc-setup-content .checkbox input[type=checkbox]{opacity:0;position:absolute;left:-9999px}.wc-setup-content .checkbox label{position:relative;display:inline-block;padding-left:28px}.wc-setup-content .checkbox label:after,.wc-setup-content .checkbox label:before{position:absolute;content:"";display:inline-block}.wc-setup-content .checkbox label:before{height:16px;width:16px;left:0;top:3px;border:1px solid #aaa;background-color:#fff;border-radius:3px}.wc-setup-content .checkbox label:after{height:5px;width:9px;border-left:2px solid;border-bottom:2px solid;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:4px;top:7px;color:#fff}.wc-setup-content .checkbox input[type=checkbox]+label::after{content:none}.wc-setup-content .checkbox input[type=checkbox]:checked+label::after{content:""}.wc-setup-content .checkbox input[type=checkbox]:focus+label::before{outline:#3b99fc auto 5px}.wc-setup-content .checkbox input[type=checkbox]:checked+label::before{background:#935687;border-color:#935687}.wc-setup-steps{padding:0 0 24px;margin:0;list-style:none outside;overflow:hidden;color:#ccc;width:100%;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex}.wc-setup-steps li{width:100%;float:left;padding:0 0 .8em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.wc-setup-steps li a{color:#a16696;text-decoration:none;padding:1.5em;margin:-1.5em;position:relative;z-index:1}.wc-setup-steps li a:focus,.wc-setup-steps li a:hover{color:#111;text-decoration:underline}.wc-setup-steps li::before{content:'';border:4px solid #ccc;border-radius:100%;width:4px;height:4px;position:absolute;bottom:0;left:50%;margin-left:-6px;margin-bottom:-8px;background:#fff}.wc-setup-steps li.active{border-color:#a16696;color:#a16696;font-weight:700}.wc-setup-steps li.active::before{border-color:#a16696}.wc-setup-steps li.done{border-color:#a16696;color:#a16696}.wc-setup-steps li.done::before{border-color:#a16696;background:#a16696}.wc-setup .wc-setup-actions{overflow:hidden;margin:20px 0 0;position:relative}.wc-setup .wc-setup-actions .button{font-size:1.25em;padding:.5em 1em;line-height:1em;margin-right:.5em;margin-bottom:2px;height:auto;border-radius:4px}.wc-setup .wc-setup-actions .button-primary{background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597;margin:0;opacity:1}.wc-setup .wc-setup-actions .button-primary:active,.wc-setup .wc-setup-actions .button-primary:focus,.wc-setup .wc-setup-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content p:last-child{margin-bottom:0}.wc-setup-content p.store-setup{margin-top:0}.wc-setup-footer-links{font-size:.85em;color:#7b7b7b;margin:1.18em auto;display:inline-block;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro{padding:40px 40px 0;background:#f5f5f5;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro img{margin:40px 0 0 0;width:100%;display:block}.wc-wizard-storefront .wc-wizard-storefront-features{list-style:none outside;margin:0 0 20px;padding:0 0 0 30px;overflow:hidden}.wc-wizard-storefront .wc-wizard-storefront-feature{margin:0;padding:20px 30px 20px 2em;width:50%;box-sizing:border-box}.wc-wizard-storefront .wc-wizard-storefront-feature::before{margin-left:-2em;position:absolute}.wc-wizard-storefront .wc-wizard-storefront-feature.first{clear:both;float:left}.wc-wizard-storefront .wc-wizard-storefront-feature.last{float:right}.wc-wizard-storefront .wc-wizard-storefront-feature__bulletproof::before{content:'🔒'}.wc-wizard-storefront .wc-wizard-storefront-feature__mobile::before{content:'📱'}.wc-wizard-storefront .wc-wizard-storefront-feature__accessibility::before{content:'👓'}.wc-wizard-storefront .wc-wizard-storefront-feature__search::before{content:'🔍'}.wc-wizard-storefront .wc-wizard-storefront-feature__compatibility::before{content:'🔧'}.wc-wizard-storefront .wc-wizard-storefront-feature__extendable::before{content:'🎨'}.wc-wizard-services{border:1px solid #eee;padding:0;margin:0 0 1em;list-style:none outside;border-radius:4px;overflow:hidden}.wc-wizard-services p{margin:0 0 1em 0;padding:0;font-size:1em;line-height:1.5em}.wc-wizard-service-item,.wc-wizard-services-list-toggle{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0;border-bottom:1px solid #eee;color:#666;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-service-item:last-child,.wc-wizard-services-list-toggle:last-child{border-bottom:0}.wc-wizard-service-item .payment-gateway-fee,.wc-wizard-services-list-toggle .payment-gateway-fee{color:#a6a6a6}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-flex-basis:0;flex-basis:0;min-width:160px;text-align:center;font-weight:700;padding:2em 0;-webkit-align-self:stretch;align-self:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.wc-wizard-payment-gateway-form .wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-payment-gateway-form .wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{max-width:75px}.wc-wizard-service-item.stripe-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.stripe-logo .wc-wizard-service-name img{padding:8px 0}.wc-wizard-service-item.paypal-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.paypal-logo .wc-wizard-service-name img{max-width:87px;padding:2px 0}.wc-wizard-service-item.klarna-logo .wc-wizard-service-name,.wc-wizard-services-list-toggle.klarna-logo .wc-wizard-service-name{background:#000}.wc-wizard-service-item.klarna-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.klarna-logo .wc-wizard-service-name img{max-width:87px;padding:12px 0}.wc-wizard-service-item.square-logo .wc-wizard-service-name,.wc-wizard-services-list-toggle.square-logo .wc-wizard-service-name{background:#000}.wc-wizard-service-item.square-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.square-logo .wc-wizard-service-name img{max-width:95px;padding:12px 0}.wc-wizard-service-item.eway-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.eway-logo .wc-wizard-service-name img{max-width:87px}.wc-wizard-service-item.payfast-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.payfast-logo .wc-wizard-service-name img{max-width:140px}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;padding:20px}.wc-wizard-service-item .wc-wizard-service-description p,.wc-wizard-services-list-toggle .wc-wizard-service-description p{margin-bottom:1em}.wc-wizard-service-item .wc-wizard-service-description p:last-child,.wc-wizard-services-list-toggle .wc-wizard-service-description p:last-child{margin-bottom:0}.wc-wizard-service-item .wc-wizard-service-description .wc-wizard-service-settings-description,.wc-wizard-services-list-toggle .wc-wizard-service-description .wc-wizard-service-settings-description{display:block;font-style:italic;color:#999}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-flex-basis:0;flex-basis:0;min-width:75px;text-align:center;cursor:pointer;padding:2em 0;position:relative;max-height:1.5em;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-toggle,.wc-wizard-services-list-toggle .wc-wizard-service-toggle{height:16px;width:32px;border:2px solid #935687;background-color:#935687;display:inline-block;text-indent:-9999px;border-radius:10em;position:relative}.wc-wizard-service-item .wc-wizard-service-toggle input[type=checkbox],.wc-wizard-services-list-toggle .wc-wizard-service-toggle input[type=checkbox]{display:none}.wc-wizard-service-item .wc-wizard-service-toggle:before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle:before{content:"";display:block;width:16px;height:16px;background:#fff;position:absolute;top:0;right:0;border-radius:100%}.wc-wizard-service-item .wc-wizard-service-toggle.disabled,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled{border-color:#999;background-color:#999}.wc-wizard-service-item .wc-wizard-service-toggle.disabled:before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled:before{right:auto;left:0}.wc-wizard-service-item .wc-wizard-service-settings,.wc-wizard-services-list-toggle .wc-wizard-service-settings{display:none;margin-top:.75em;margin-bottom:0;cursor:default}.wc-wizard-service-item .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.checked .wc-wizard-service-settings,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings{display:inline-block}.wc-wizard-service-item.checked .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.closed,.wc-wizard-services-list-toggle.closed{border-bottom:0}.wc-wizard-services-list-toggle{cursor:pointer}.wc-wizard-services-list-toggle .wc-wizard-service-enable::before{content:"\f343";font-family:dashicons;visibility:initial;color:#666;font-size:25px;margin-top:-7px;margin-left:-5px;position:absolute;visibility:visible}.wc-wizard-services-list-toggle.closed .wc-wizard-service-enable::before{content:"\f347"}.wc-wizard-services-list-toggle .wc-wizard-service-enable input{visibility:hidden;position:relative}.wc-wizard-services.manual .wc-wizard-service-item{display:none}.wc-wizard-services.shipping{margin:0}.wc-wizard-services.shipping .wc-wizard-service-name{font-weight:400;text-align:left;-webkit-box-align:center;-webkit-align-items:center;align-items:center;max-height:5em;padding:0}.wc-wizard-services.shipping .wc-wizard-service-item{padding-left:2em;padding-top:.67em}.wc-wizard-services.shipping .wc-wizard-service-item:first-child{border-bottom:0;padding-bottom:0;font-weight:700}.wc-wizard-services.shipping .wc-wizard-service-item:first-child .wc-wizard-service-name{font-weight:700}.wc-wizard-services.shipping .shipping-method-setting,.wc-wizard-services.shipping .wc-wizard-shipping-method-select{display:-webkit-box;display:-webkit-flex;display:flex}.wc-wizard-services.shipping .shipping-method-setting.hide,.wc-wizard-services.shipping .wc-wizard-shipping-method-select.hide{display:none}.wc-wizard-services.shipping .shipping-method-setting input,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown{margin-right:2em;margin-bottom:1em}.wc-wizard-services.shipping .shipping-method-setting input .select2,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown .select2{min-width:130px}.wc-wizard-services.shipping .wc-wizard-service-description{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;color:#a6a6a6}.wc-wizard-services.shipping .wc-wizard-service-item:not(:first-child) .wc-wizard-service-description{font-size:.92em;padding-bottom:10px}.wc-wizard-services.shipping .shipping-method-setting input{width:95px;border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:28px;padding-left:8px;padding-right:24px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-services.shipping .shipping-method-description,.wc-wizard-services.shipping .shipping-method-setting .description{color:#7e7e7e;font-size:.9em}.wc-wizard-services.shipping .shipping-method-setting input::-webkit-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input:-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::placeholder{color:#e1e1e1}.wc-setup-shipping-units p{line-height:1.5em;font-size:13px;margin-bottom:.25em;text-align:center}.wc-setup-shipping-units .wc-setup-shipping-unit{margin-bottom:1.75em}.wc-setup-shipping-units .wc-setup-shipping-unit .select2{min-width:125px;top:-5px}.hide{display:none}.wc-wizard-features{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;list-style:none;padding:0}.wc-wizard-features .wc-wizard-feature-item{-webkit-flex-basis:calc(50% - 4em - 3px);flex-basis:calc(50% - 4em - 3px);border:1px solid #eee;padding:2em}.wc-wizard-features .wc-wizard-feature-item:nth-child(1){border-radius:4px 0 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(2){border-left:0;border-radius:0 4px 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(3){border-top:0;border-radius:0 0 0 4px}.wc-wizard-features .wc-wizard-feature-item:nth-child(4){border-top:0;border-left:0;border-radius:0 0 4px 0}.wc-wizard-features p.wc-wizard-feature-description,.wc-wizard-features p.wc-wizard-feature-name{margin:0;line-height:1.5em}h3.jetpack-reasons{text-align:center;margin:3em 0 1em 0;font-size:14px}.jetpack-logo,.wcs-notice{display:block;margin:1.75em auto 2em auto;max-height:175px}.activate-splash .jetpack-logo{width:170px;margin-bottom:0}.activate-splash .wcs-notice{margin-top:1em;padding-left:57px}.step{text-align:center}.wc-setup .wc-setup-actions .button{font-weight:300;font-size:16px;padding:1em 2em;box-shadow:none;min-width:12em;min-width:auto;margin-top:10px}.wc-setup .wc-setup-actions .button:active,.wc-setup .wc-setup-actions .button:focus,.wc-setup .wc-setup-actions .button:hover{box-shadow:none}.wc-setup .wc-setup-actions .plugin-install-info{display:block;font-style:italic;color:#999;font-size:14px;line-height:1.5em;margin:5px 0}.wc-setup .wc-setup-actions .plugin-install-info>*{display:block}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item::after{content:', '}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item:last-of-type::after{content:'. '}.wc-setup .wc-setup-actions .plugin-install-info a{white-space:nowrap}.wc-setup .wc-setup-actions .plugin-install-info a:not(:hover):not(:focus){color:inherit}.plugin-install-source{background:rgba(187,119,174,.15)}.plugin-install-source:not(.wc-wizard-service-item){box-shadow:0 0 0 10px rgba(187,119,174,.15)}.location-prompt{color:#666;font-size:13px;font-weight:500;margin-bottom:.5em;margin-top:.85em;display:inline-block}.location-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;width:calc(100% - 8px - 24px - 2px);padding-left:8px;padding-right:24px;font-size:16px;color:#444;background-color:#fff;display:inline-block}.location-input.dropdown{width:100%}.address-step .select2{min-width:100%}.store-address-container .city-and-postcode{display:-webkit-box;display:-webkit-flex;display:flex}.store-address-container .city-and-postcode div{-webkit-flex-basis:50%;flex-basis:50%;margin-right:1em}.store-address-container .city-and-postcode div:last-of-type{margin-right:0}.store-address-container .select2-container,.store-address-container input[type=text],.store-address-container select{margin-bottom:10px}.product-type-container{margin-top:14px;margin-bottom:1px}#woocommerce_sell_in_person{margin-left:0}.wc-wizard-service-settings .payment-email-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;padding:0 8px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-service-settings .payment-email-input[disabled]{color:#aaa}.newsletter-form-container{display:-webkit-box;display:-webkit-flex;display:flex}.newsletter-form-container .newsletter-form-email{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:42px;padding:0 8px;font-size:16px;color:#666;background-color:#fff;display:inline-block;margin-right:6px;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.newsletter-form-container .newsletter-form-button-container{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.wc-setup .wc-setup-actions .button.newsletter-form-button{height:42px;padding:0 1em;margin:0}.wc-wizard-next-steps{border:1px solid #eee;border-radius:4px;list-style:none;padding:0}.wc-wizard-next-steps li{padding:0}.wc-wizard-next-steps .wc-wizard-next-step-item{display:-webkit-box;display:-webkit-flex;display:flex;border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-next-step-item:first-child{border-top:0}.wc-wizard-next-steps .wc-wizard-next-step-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;margin:1.5em}.wc-wizard-next-steps .wc-wizard-next-step-action{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-next-steps .wc-wizard-next-step-action .button{margin:1em 1.5em}.wc-wizard-next-steps p.next-step-heading{margin:0;font-size:.95em;font-weight:400;font-variant:all-petite-caps}.wc-wizard-next-steps p.next-step-extra-info{margin:0}.wc-wizard-next-steps h3.next-step-description{margin:0;font-size:16px;font-weight:600}.wc-wizard-next-steps .wc-wizard-additional-steps{border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions{margin:0 0 1.5em 0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button{font-size:15px;margin:1em 0 1em 1.5em}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button::last-child{margin-right:1.5em}p.next-steps-help-text{color:#9f9f9f;padding:0 2em;text-align:center;font-size:.9em}p.jetpack-terms{font-size:.8em;text-align:center;max-width:480px;margin:0 auto;line-height:1.5em}.woocommerce-error{background:#ffe6e5;border-color:#ffc5c2;padding:1em;margin-bottom:1em}.woocommerce-error p{margin-top:0;margin-bottom:.5em;color:#444}.woocommerce-error a{color:#ff645c}.woocommerce-error .reconnect-reminder{font-size:.85em}.woocommerce-error .wc-setup-actions .button{font-size:14px}.wc-wizard-service-setting-ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.wc-wizard-service-setting-ppec_paypal_reroute_requests .payment-checkbox-input,.wc-wizard-service-setting-stripe_create_account .payment-checkbox-input{-webkit-box-ordinal-group:2;-webkit-order:1;order:1;margin-top:5px;margin-left:0;margin-right:0;width:1.5em}.wc-wizard-service-setting-ppec_paypal_reroute_requests .ppec_paypal_reroute_requests,.wc-wizard-service-setting-ppec_paypal_reroute_requests .stripe_create_account,.wc-wizard-service-setting-stripe_create_account .ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account .stripe_create_account{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;margin-left:.3em}.wc-wizard-service-setting-ppec_paypal_email,.wc-wizard-service-setting-stripe_email{margin-top:.75em;margin-left:1.5em}.wc-wizard-service-setting-ppec_paypal_email label.ppec_paypal_email,.wc-wizard-service-setting-ppec_paypal_email label.stripe_email,.wc-wizard-service-setting-stripe_email label.ppec_paypal_email,.wc-wizard-service-setting-stripe_email label.stripe_email{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.wc-wizard-service-setting-ppec_paypal_email input.payment-email-input,.wc-wizard-service-setting-stripe_email input.payment-email-input{box-sizing:border-box;margin-bottom:.5em;width:100%;height:32px}.wc-setup-content .recommended-step{border:1px solid #ebebeb;border-radius:4px;padding:2.5em}.wc-setup-content .recommended-item{list-style:none}.wc-setup-content .recommended-item:last-child label{margin-bottom:0}.wc-setup-content .recommended-item label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:1.5em}.wc-setup-content .recommended-item label:after,.wc-setup-content .recommended-item label:before{top:auto}.wc-setup-content .recommended-item label:after{margin-top:-1.5px}.wc-setup-content .recommended-item .recommended-item-icon{border:1px solid #fff;border-radius:7px;height:3.5em;margin-right:1em;margin-left:4px}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-storefront_theme{background-color:#f4a224;max-height:3em;max-width:3em;padding:.25em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-automated_taxes{background-color:#d0011b;max-height:1.75em;padding:.875em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-mailchimp{background-color:#ffe01b;height:2em;padding:.75em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-woocommerce_services{background-color:#f0f0f0;max-height:1.5em;padding:1.3em .7em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-shipstation{background-color:#f0f0f0;padding:.3em}.wc-setup-content .recommended-item .recommended-item-description-container h3{font-size:15px;font-weight:700;letter-spacing:.5px;margin-bottom:0}.wc-setup-content .recommended-item .recommended-item-description-container p{margin-top:0;line-height:1.5em}.wc-wizard-service-info{padding:1em 2em;background-color:#fafafa}.help_tip{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.wc-setup #tiptip_content{background:#5f6973}.wc-setup #tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:#5f6973}.wc-setup-shipping-recommended{border-bottom:1px solid #eee;margin-top:0;padding:30px 0}@media only screen and (max-width:400px){#wc-logo img{max-width:80%}.wc-setup-steps{display:none}.store-address-container .city-and-postcode{display:block}.store-address-container .city-and-postcode div{margin-right:0}.wc-wizard-service-item,.wc-wizard-services-list-toggle{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;padding:20px 0 0}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{padding:20px 20px 0;text-align:left;-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{margin:0}.newsletter-form-container{display:block}.newsletter-form-container .newsletter-form-email{display:block;box-sizing:border-box;width:100%;margin-bottom:10px}.newsletter-form-container .button.newsletter-form-button{float:left}.wc-wizard-next-steps .wc-wizard-next-step-item{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-action p{margin:0}}
1
+ @charset "UTF-8";body{margin:65px auto 24px;box-shadow:none;background:#f1f1f1;padding:0}#wc-logo{border:0;margin:0 0 24px;padding:0;text-align:center}#wc-logo img{max-width:30%}.wc-setup{text-align:center}.wc-setup .select2-container{text-align:left;width:auto}.wc-setup .hidden{display:none}.wc-setup-content{box-shadow:0 1px 3px rgba(0,0,0,.13);padding:2em;margin:0 0 20px;background:#fff;overflow:hidden;zoom:1;text-align:left}.wc-setup-content h1,.wc-setup-content h2,.wc-setup-content h3,.wc-setup-content table{margin:0 0 20px;border:0;padding:0;color:#666;clear:none;font-weight:500}.wc-setup-content p{margin:20px 0;font-size:1em;line-height:1.75em;color:#666}.wc-setup-content table{font-size:1em;line-height:1.75em;color:#666}.wc-setup-content a{color:#a16696}.wc-setup-content a:focus,.wc-setup-content a:hover{color:#111}.wc-setup-content .form-table th{width:35%;vertical-align:top;font-weight:400}.wc-setup-content .form-table td{vertical-align:top}.wc-setup-content .form-table td input,.wc-setup-content .form-table td select{width:100%;box-sizing:border-box}.wc-setup-content .form-table td input[size]{width:auto}.wc-setup-content .form-table td .description{line-height:1.5em;display:block;margin-top:.25em;color:#999;font-style:italic}.wc-setup-content .form-table td .input-checkbox,.wc-setup-content .form-table td .input-radio{width:auto;box-sizing:inherit;padding:inherit;margin:0 .5em 0 0;box-shadow:none}.wc-setup-content .form-table .section_title td{padding:0}.wc-setup-content .form-table .section_title td h2,.wc-setup-content .form-table .section_title td p{margin:12px 0 0}.wc-setup-content .form-table td,.wc-setup-content .form-table th{padding:12px 0;margin:0;border:0}.wc-setup-content .form-table td:first-child,.wc-setup-content .form-table th:first-child{padding-right:1em}.wc-setup-content table.tax-rates{width:100%;font-size:.92em}.wc-setup-content table.tax-rates th{padding:0;text-align:center;width:auto;vertical-align:middle}.wc-setup-content table.tax-rates td{border:1px solid #f5f5f5;padding:6px;text-align:center;vertical-align:middle}.wc-setup-content table.tax-rates td input{outline:0;border:0;padding:0;box-shadow:none;text-align:center;width:100%}.wc-setup-content table.tax-rates td.sort{cursor:move;color:#ccc}.wc-setup-content table.tax-rates td.sort::before{content:"\f333";font-family:dashicons}.wc-setup-content table.tax-rates td.readonly{background:#f5f5f5}.wc-setup-content table.tax-rates .add{padding:1em 0 0 1em;line-height:1em;font-size:1em;width:0;margin:6px 0 0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .add::before{content:"\f502";font-family:dashicons;position:absolute;left:0;top:0}.wc-setup-content table.tax-rates .remove{padding:1em 0 0 1em;line-height:1em;font-size:1em;width:0;margin:0;height:0;overflow:hidden;position:relative;display:inline-block}.wc-setup-content table.tax-rates .remove::before{content:"\f182";font-family:dashicons;position:absolute;left:0;top:0}.wc-setup-content .wc-setup-pages{width:100%;border-top:1px solid #eee}.wc-setup-content .wc-setup-pages thead th{display:none}.wc-setup-content .wc-setup-pages .page-name{width:30%;font-weight:700}.wc-setup-content .wc-setup-pages td,.wc-setup-content .wc-setup-pages th{padding:14px 0;border-bottom:1px solid #eee}.wc-setup-content .wc-setup-pages td:first-child,.wc-setup-content .wc-setup-pages th:first-child{padding-right:9px}.wc-setup-content .wc-setup-pages th{padding-top:0}.wc-setup-content .wc-setup-pages .page-options p{color:#777;margin:6px 0 0 24px;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p input{vertical-align:middle;margin:1px 0 0;height:1.75em;width:1.75em;line-height:1.75em}.wc-setup-content .wc-setup-pages .page-options p label{line-height:1}@media screen and (max-width:782px){.wc-setup-content .form-table tbody th{width:auto}}.wc-setup-content .twitter-share-button{float:right}.wc-setup-content .wc-setup-next-steps{overflow:hidden;margin:0 0 24px;padding-bottom:2px}.wc-setup-content .wc-setup-next-steps h2{margin-bottom:12px}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-first{float:left;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps .wc-setup-next-steps-last{float:right;width:50%;box-sizing:border-box}.wc-setup-content .wc-setup-next-steps ul{padding:0 2em 0 0;list-style:none outside;margin:0}.wc-setup-content .wc-setup-next-steps ul li a{display:block;padding:0 0 .75em}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button{background-color:#f7f7f7;border-color:#ccc;color:#23282d;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #ccc;text-shadow:1px 0 1px #eee,0 1px 1px #eee;font-size:1em;height:auto;line-height:1.75em;margin:0 0 .75em;opacity:1;padding:1em;text-align:center}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button:hover{background:#f5f5f5;border-color:#aaa}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary{color:#fff;background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597}.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:active,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:focus,.wc-setup-content .wc-setup-next-steps ul .setup-product a.button-primary:hover{color:#fff;background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content .wc-setup-next-steps ul li a::before{color:#82878c;font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 10px 0 0;top:1px;position:relative;text-decoration:none!important;vertical-align:top}.wc-setup-content .wc-setup-next-steps ul .learn-more a::before{content:"\f105"}.wc-setup-content .wc-setup-next-steps ul .video-walkthrough a::before{content:"\f126"}.wc-setup-content .wc-setup-next-steps ul .newsletter a::before{content:"\f465"}.wc-setup-content .updated,.wc-setup-content .woocommerce-newsletter{padding:24px 24px 0;margin:0 0 24px;overflow:hidden;background:#f5f5f5}.wc-setup-content .updated p,.wc-setup-content .woocommerce-newsletter p{padding:0;margin:0 0 12px}.wc-setup-content .updated form,.wc-setup-content .updated p:last-child,.wc-setup-content .woocommerce-newsletter form,.wc-setup-content .woocommerce-newsletter p:last-child{margin:0 0 24px}.wc-setup-content .woocommerce-tracker{margin:24px 0;border:1px solid #eee;padding:20px;border-radius:4px;overflow:hidden}.wc-setup-content .woocommerce-tracker p{font-size:14px;line-height:1.5em}.wc-setup-content .woocommerce-tracker .checkbox{line-height:24px;font-weight:500;font-size:1em;margin-top:0;margin-bottom:20px}.wc-setup-content .checkbox input[type=checkbox]{opacity:0;position:absolute;left:-9999px}.wc-setup-content .checkbox label{position:relative;display:inline-block;padding-left:28px}.wc-setup-content .checkbox label::after,.wc-setup-content .checkbox label::before{position:absolute;content:"";display:inline-block}.wc-setup-content .checkbox label::before{height:16px;width:16px;left:0;top:3px;border:1px solid #aaa;background-color:#fff;border-radius:3px}.wc-setup-content .checkbox label::after{height:5px;width:9px;border-left:2px solid;border-bottom:2px solid;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:4px;top:7px;color:#fff}.wc-setup-content .checkbox input[type=checkbox]+label::after{content:none}.wc-setup-content .checkbox input[type=checkbox]:checked+label::after{content:""}.wc-setup-content .checkbox input[type=checkbox]:focus+label::before{outline:#3b99fc auto 5px}.wc-setup-content .checkbox input[type=checkbox]:checked+label::before{background:#935687;border-color:#935687}.wc-setup-steps{padding:0 0 24px;margin:0;list-style:none outside;overflow:hidden;color:#ccc;width:100%;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex}.wc-setup-steps li{width:100%;float:left;padding:0 0 .8em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.wc-setup-steps li a{color:#a16696;text-decoration:none;padding:1.5em;margin:-1.5em;position:relative;z-index:1}.wc-setup-steps li a:focus,.wc-setup-steps li a:hover{color:#111;text-decoration:underline}.wc-setup-steps li::before{content:"";border:4px solid #ccc;border-radius:100%;width:4px;height:4px;position:absolute;bottom:0;left:50%;margin-left:-6px;margin-bottom:-8px;background:#fff}.wc-setup-steps li.active{border-color:#a16696;color:#a16696;font-weight:700}.wc-setup-steps li.active::before{border-color:#a16696}.wc-setup-steps li.done{border-color:#a16696;color:#a16696}.wc-setup-steps li.done::before{border-color:#a16696;background:#a16696}.wc-setup .wc-setup-actions{overflow:hidden;margin:20px 0 0;position:relative}.wc-setup .wc-setup-actions .button{font-size:1.25em;padding:.5em 1em;line-height:1em;margin-right:.5em;margin-bottom:2px;height:auto;border-radius:4px}.wc-setup .wc-setup-actions .button-primary{background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597;margin:0;opacity:1}.wc-setup .wc-setup-actions .button-primary:active,.wc-setup .wc-setup-actions .button-primary:focus,.wc-setup .wc-setup-actions .button-primary:hover{background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.wc-setup-content p:last-child{margin-bottom:0}.wc-setup-content p.store-setup{margin-top:0}.wc-setup-footer-links{font-size:.85em;color:#7b7b7b;margin:1.18em auto;display:inline-block;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro{padding:40px 40px 0;background:#f5f5f5;text-align:center}.wc-wizard-storefront .wc-wizard-storefront-intro img{margin:40px 0 0 0;width:100%;display:block}.wc-wizard-storefront .wc-wizard-storefront-features{list-style:none outside;margin:0 0 20px;padding:0 0 0 30px;overflow:hidden}.wc-wizard-storefront .wc-wizard-storefront-feature{margin:0;padding:20px 30px 20px 2em;width:50%;box-sizing:border-box}.wc-wizard-storefront .wc-wizard-storefront-feature::before{margin-left:-2em;position:absolute}.wc-wizard-storefront .wc-wizard-storefront-feature.first{clear:both;float:left}.wc-wizard-storefront .wc-wizard-storefront-feature.last{float:right}.wc-wizard-storefront .wc-wizard-storefront-feature__bulletproof::before{content:"🔒"}.wc-wizard-storefront .wc-wizard-storefront-feature__mobile::before{content:"📱"}.wc-wizard-storefront .wc-wizard-storefront-feature__accessibility::before{content:"👓"}.wc-wizard-storefront .wc-wizard-storefront-feature__search::before{content:"🔍"}.wc-wizard-storefront .wc-wizard-storefront-feature__compatibility::before{content:"🔧"}.wc-wizard-storefront .wc-wizard-storefront-feature__extendable::before{content:"🎨"}.wc-wizard-services{border:1px solid #eee;padding:0;margin:0 0 1em;list-style:none outside;border-radius:4px;overflow:hidden}.wc-wizard-services p{margin:0 0 1em 0;padding:0;font-size:1em;line-height:1.5em}.wc-wizard-service-item,.wc-wizard-services-list-toggle{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0;border-bottom:1px solid #eee;color:#666;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-service-item:last-child,.wc-wizard-services-list-toggle:last-child{border-bottom:0}.wc-wizard-service-item .payment-gateway-fee,.wc-wizard-services-list-toggle .payment-gateway-fee{color:#a6a6a6}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-flex-basis:0;flex-basis:0;min-width:160px;text-align:center;font-weight:700;padding:2em 0;-webkit-align-self:stretch;align-self:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.wc-wizard-payment-gateway-form .wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-payment-gateway-form .wc-wizard-services-list-toggle .wc-wizard-service-name{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{max-width:75px}.wc-wizard-service-item.stripe-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.stripe-logo .wc-wizard-service-name img{padding:8px 0}.wc-wizard-service-item.paypal-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.paypal-logo .wc-wizard-service-name img{max-width:87px;padding:2px 0}.wc-wizard-service-item.klarna-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.klarna-logo .wc-wizard-service-name img{max-width:87px;padding:12px 0}.wc-wizard-service-item.square-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.square-logo .wc-wizard-service-name img{max-width:95px;padding:12px 0}.wc-wizard-service-item.eway-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.eway-logo .wc-wizard-service-name img{max-width:87px}.wc-wizard-service-item.payfast-logo .wc-wizard-service-name img,.wc-wizard-services-list-toggle.payfast-logo .wc-wizard-service-name img{max-width:140px}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;padding:20px}.wc-wizard-service-item .wc-wizard-service-description p,.wc-wizard-services-list-toggle .wc-wizard-service-description p{margin-bottom:1em}.wc-wizard-service-item .wc-wizard-service-description p:last-child,.wc-wizard-services-list-toggle .wc-wizard-service-description p:last-child{margin-bottom:0}.wc-wizard-service-item .wc-wizard-service-description .wc-wizard-service-settings-description,.wc-wizard-services-list-toggle .wc-wizard-service-description .wc-wizard-service-settings-description{display:block;font-style:italic;color:#999}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-flex-basis:0;flex-basis:0;min-width:75px;text-align:center;cursor:pointer;padding:2em 0;position:relative;max-height:1.5em;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-toggle,.wc-wizard-services-list-toggle .wc-wizard-service-toggle{height:16px;width:32px;border:2px solid #935687;background-color:#935687;display:inline-block;text-indent:-9999px;border-radius:10em;position:relative}.wc-wizard-service-item .wc-wizard-service-toggle input[type=checkbox],.wc-wizard-services-list-toggle .wc-wizard-service-toggle input[type=checkbox]{display:none}.wc-wizard-service-item .wc-wizard-service-toggle::before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle::before{content:"";display:block;width:16px;height:16px;background:#fff;position:absolute;top:0;right:0;border-radius:100%}.wc-wizard-service-item .wc-wizard-service-toggle.disabled,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled{border-color:#999;background-color:#999}.wc-wizard-service-item .wc-wizard-service-toggle.disabled::before,.wc-wizard-services-list-toggle .wc-wizard-service-toggle.disabled::before{right:auto;left:0}.wc-wizard-service-item .wc-wizard-service-settings,.wc-wizard-services-list-toggle .wc-wizard-service-settings{display:none;margin-top:.75em;margin-bottom:0;cursor:default}.wc-wizard-service-item .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.checked .wc-wizard-service-settings,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings{display:inline-block}.wc-wizard-service-item.checked .wc-wizard-service-settings.hide,.wc-wizard-services-list-toggle.checked .wc-wizard-service-settings.hide{display:none}.wc-wizard-service-item.closed,.wc-wizard-services-list-toggle.closed{border-bottom:0}.wc-wizard-services-list-toggle{cursor:pointer}.wc-wizard-services-list-toggle .wc-wizard-service-enable::before{content:"\f343";font-family:dashicons;visibility:initial;color:#666;font-size:25px;margin-top:-7px;margin-left:-5px;position:absolute;visibility:visible}.wc-wizard-services-list-toggle.closed .wc-wizard-service-enable::before{content:"\f347"}.wc-wizard-services-list-toggle .wc-wizard-service-enable input{visibility:hidden;position:relative}.wc-wizard-services.manual .wc-wizard-service-item{display:none}.wc-wizard-services.shipping{margin:0}.wc-wizard-services.shipping .wc-wizard-service-name{font-weight:400;text-align:left;-webkit-box-align:center;-webkit-align-items:center;align-items:center;max-height:5em;padding:0}.wc-wizard-services.shipping .wc-wizard-service-item{padding-left:2em;padding-top:.67em}.wc-wizard-services.shipping .wc-wizard-service-item:first-child{border-bottom:0;padding-bottom:0;font-weight:700}.wc-wizard-services.shipping .wc-wizard-service-item:first-child .wc-wizard-service-name{font-weight:700}.wc-wizard-services.shipping .shipping-method-setting,.wc-wizard-services.shipping .wc-wizard-shipping-method-select{display:-webkit-box;display:-webkit-flex;display:flex}.wc-wizard-services.shipping .shipping-method-setting.hide,.wc-wizard-services.shipping .wc-wizard-shipping-method-select.hide{display:none}.wc-wizard-services.shipping .shipping-method-setting input,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown{margin-right:2em;margin-bottom:1em}.wc-wizard-services.shipping .shipping-method-setting input .select2,.wc-wizard-services.shipping .wc-wizard-shipping-method-dropdown .select2{min-width:130px}.wc-wizard-services.shipping .wc-wizard-service-description{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;color:#a6a6a6}.wc-wizard-services.shipping .wc-wizard-service-item:not(:first-child) .wc-wizard-service-description{font-size:.92em;padding-bottom:10px}.wc-wizard-services.shipping .shipping-method-setting input{width:95px;border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:28px;padding-left:8px;padding-right:24px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-services.shipping .shipping-method-description,.wc-wizard-services.shipping .shipping-method-setting .description{color:#7e7e7e;font-size:.9em}.wc-wizard-services.shipping .shipping-method-setting input::-webkit-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input:-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::-ms-input-placeholder{color:#e1e1e1}.wc-wizard-services.shipping .shipping-method-setting input::placeholder{color:#e1e1e1}.wc-setup-shipping-units p{line-height:1.5em;font-size:13px;margin-bottom:.25em;text-align:center}.wc-setup-shipping-units .wc-setup-shipping-unit{margin-bottom:1.75em}.wc-setup-shipping-units .wc-setup-shipping-unit .select2{min-width:125px;top:-5px}.hide{display:none}.wc-wizard-features{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;list-style:none;padding:0}.wc-wizard-features .wc-wizard-feature-item{-webkit-flex-basis:calc(50% - 4em - 3px);flex-basis:calc(50% - 4em - 3px);border:1px solid #eee;padding:2em}.wc-wizard-features .wc-wizard-feature-item:nth-child(1){border-radius:4px 0 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(2){border-left:0;border-radius:0 4px 0 0}.wc-wizard-features .wc-wizard-feature-item:nth-child(3){border-top:0;border-radius:0 0 0 4px}.wc-wizard-features .wc-wizard-feature-item:nth-child(4){border-top:0;border-left:0;border-radius:0 0 4px 0}.wc-wizard-features p.wc-wizard-feature-description,.wc-wizard-features p.wc-wizard-feature-name{margin:0;line-height:1.5em}h3.jetpack-reasons{text-align:center;margin:3em 0 1em 0;font-size:14px}.jetpack-logo,.wcs-notice{display:block;margin:1.75em auto 2em auto;max-height:175px}.activate-splash .jetpack-logo{width:170px;margin-bottom:0}.activate-splash .wcs-notice{margin-top:1em;padding-left:57px}.step{text-align:center}.wc-setup .wc-setup-actions .button{font-weight:300;font-size:16px;padding:1em 2em;box-shadow:none;min-width:12em;min-width:auto;margin-top:10px}.wc-setup .wc-setup-actions .button:active,.wc-setup .wc-setup-actions .button:focus,.wc-setup .wc-setup-actions .button:hover{box-shadow:none}.wc-setup .wc-setup-actions .plugin-install-info{display:block;font-style:italic;color:#999;font-size:14px;line-height:1.5em;margin:5px 0}.wc-setup .wc-setup-actions .plugin-install-info>*{display:block}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item::after{content:", "}.wc-setup .wc-setup-actions .plugin-install-info .plugin-install-info-list-item:last-of-type::after{content:". "}.wc-setup .wc-setup-actions .plugin-install-info a{white-space:nowrap}.wc-setup .wc-setup-actions .plugin-install-info a:not(:hover):not(:focus){color:inherit}.plugin-install-source{background:rgba(187,119,174,.15)}.plugin-install-source:not(.wc-wizard-service-item){box-shadow:0 0 0 10px rgba(187,119,174,.15)}.location-prompt{color:#666;font-size:13px;font-weight:500;margin-bottom:.5em;margin-top:.85em;display:inline-block}.location-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;width:calc(100% - 8px - 24px - 2px);padding-left:8px;padding-right:24px;font-size:16px;color:#444;background-color:#fff;display:inline-block}.location-input.dropdown{width:100%}.address-step .select2{min-width:100%}.store-address-container .city-and-postcode{display:-webkit-box;display:-webkit-flex;display:flex}.store-address-container .city-and-postcode div{-webkit-flex-basis:50%;flex-basis:50%;margin-right:1em}.store-address-container .city-and-postcode div:last-of-type{margin-right:0}.store-address-container .select2-container,.store-address-container input[type=text],.store-address-container select{margin-bottom:10px}.product-type-container{margin-top:14px;margin-bottom:1px}#woocommerce_sell_in_person{margin-left:0}.wc-wizard-service-settings .payment-email-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;padding:0 8px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.wc-wizard-service-settings .payment-email-input[disabled]{color:#aaa}.newsletter-form-container{display:-webkit-box;display:-webkit-flex;display:flex}.newsletter-form-container .newsletter-form-email{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:42px;padding:0 8px;font-size:16px;color:#666;background-color:#fff;display:inline-block;margin-right:6px;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.newsletter-form-container .newsletter-form-button-container{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.wc-setup .wc-setup-actions .button.newsletter-form-button{height:42px;padding:0 1em;margin:0}.wc-wizard-next-steps{border:1px solid #eee;border-radius:4px;list-style:none;padding:0}.wc-wizard-next-steps li{padding:0}.wc-wizard-next-steps .wc-wizard-next-step-item{display:-webkit-box;display:-webkit-flex;display:flex;border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-next-step-item:first-child{border-top:0}.wc-wizard-next-steps .wc-wizard-next-step-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;margin:1.5em}.wc-wizard-next-steps .wc-wizard-next-step-action{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.wc-wizard-next-steps .wc-wizard-next-step-action .button{margin:1em 1.5em}.wc-wizard-next-steps p.next-step-heading{margin:0;font-size:.95em;font-weight:400;font-variant:all-petite-caps}.wc-wizard-next-steps p.next-step-extra-info{margin:0}.wc-wizard-next-steps h3.next-step-description{margin:0;font-size:16px;font-weight:600}.wc-wizard-next-steps .wc-wizard-additional-steps{border-top:1px solid #eee}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions{margin:0 0 1.5em 0}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button{font-size:15px;margin:1em 0 1em 1.5em}.wc-wizard-next-steps .wc-wizard-additional-steps .wc-setup-actions .button::last-child{margin-right:1.5em}p.next-steps-help-text{color:#9f9f9f;padding:0 2em;text-align:center;font-size:.9em}p.jetpack-terms{font-size:.8em;text-align:center;max-width:480px;margin:0 auto;line-height:1.5em}.woocommerce-error{background:#ffe6e5;border-color:#ffc5c2;padding:1em;margin-bottom:1em}.woocommerce-error p{margin-top:0;margin-bottom:.5em;color:#444}.woocommerce-error a{color:#ff645c}.woocommerce-error .reconnect-reminder{font-size:.85em}.woocommerce-error .wc-setup-actions .button{font-size:14px}.wc-wizard-service-setting-ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.wc-wizard-service-setting-ppec_paypal_reroute_requests .payment-checkbox-input,.wc-wizard-service-setting-stripe_create_account .payment-checkbox-input{-webkit-box-ordinal-group:2;-webkit-order:1;order:1;margin-top:5px;margin-left:0;margin-right:0;width:1.5em}.wc-wizard-service-setting-ppec_paypal_reroute_requests .ppec_paypal_reroute_requests,.wc-wizard-service-setting-ppec_paypal_reroute_requests .stripe_create_account,.wc-wizard-service-setting-stripe_create_account .ppec_paypal_reroute_requests,.wc-wizard-service-setting-stripe_create_account .stripe_create_account{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;margin-left:.3em}.wc-wizard-service-setting-ppec_paypal_email,.wc-wizard-service-setting-stripe_email{margin-top:.75em;margin-left:1.5em}.wc-wizard-service-setting-ppec_paypal_email label.ppec_paypal_email,.wc-wizard-service-setting-ppec_paypal_email label.stripe_email,.wc-wizard-service-setting-stripe_email label.ppec_paypal_email,.wc-wizard-service-setting-stripe_email label.stripe_email{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.wc-wizard-service-setting-ppec_paypal_email input.payment-email-input,.wc-wizard-service-setting-stripe_email input.payment-email-input{box-sizing:border-box;margin-bottom:.5em;width:100%;height:32px}.wc-setup-content .recommended-step{border:1px solid #ebebeb;border-radius:4px;padding:2.5em}.wc-setup-content .recommended-item{list-style:none}.wc-setup-content .recommended-item:last-child label{margin-bottom:0}.wc-setup-content .recommended-item label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:1.5em}.wc-setup-content .recommended-item label::after,.wc-setup-content .recommended-item label::before{top:auto}.wc-setup-content .recommended-item label::after{margin-top:-1.5px}.wc-setup-content .recommended-item .recommended-item-icon{border:1px solid #fff;border-radius:7px;height:3.5em;margin-right:1em;margin-left:4px}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-storefront_theme{background-color:#f4a224;max-height:3em;max-width:3em;padding:.25em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-automated_taxes{background-color:#d0011b;max-height:1.75em;padding:.875em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-mailchimp{background-color:#ffe01b;height:2em;padding:.75em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-woocommerce_services{background-color:#f0f0f0;max-height:1.5em;padding:1.3em .7em}.wc-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-shipstation{background-color:#f0f0f0;padding:.3em}.wc-setup-content .recommended-item .recommended-item-description-container h3{font-size:15px;font-weight:700;letter-spacing:.5px;margin-bottom:0}.wc-setup-content .recommended-item .recommended-item-description-container p{margin-top:0;line-height:1.5em}.wc-wizard-service-info{padding:1em 2em;background-color:#fafafa}.help_tip{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.wc-setup #tiptip_content{background:#5f6973}.wc-setup #tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:#5f6973}.wc-setup-shipping-recommended{border-bottom:1px solid #eee;margin-top:0;padding:30px 0}@media only screen and (max-width:400px){#wc-logo img{max-width:80%}.wc-setup-steps{display:none}.store-address-container .city-and-postcode{display:block}.store-address-container .city-and-postcode div{margin-right:0}.wc-wizard-service-item,.wc-wizard-services-list-toggle{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-service-item .wc-wizard-service-enable,.wc-wizard-services-list-toggle .wc-wizard-service-enable{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;padding:20px 0 0}.wc-wizard-service-item .wc-wizard-service-description,.wc-wizard-services-list-toggle .wc-wizard-service-description{-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.wc-wizard-service-item .wc-wizard-service-name,.wc-wizard-services-list-toggle .wc-wizard-service-name{padding:20px 20px 0;text-align:left;-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.wc-wizard-service-item .wc-wizard-service-name img,.wc-wizard-services-list-toggle .wc-wizard-service-name img{margin:0}.newsletter-form-container{display:block}.newsletter-form-container .newsletter-form-email{display:block;box-sizing:border-box;width:100%;margin-bottom:10px}.newsletter-form-container .button.newsletter-form-button{float:left}.wc-wizard-next-steps .wc-wizard-next-step-item{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-description{margin-bottom:0}.wc-wizard-next-steps .wc-wizard-next-step-item .wc-wizard-next-step-action p{margin:0}}
assets/css/wc-setup.scss CHANGED
@@ -4,26 +4,31 @@ body {
4
  background: #f1f1f1;
5
  padding: 0;
6
  }
 
7
  #wc-logo {
8
  border: 0;
9
  margin: 0 0 24px;
10
  padding: 0;
11
  text-align: center;
 
12
  img {
13
  max-width: 30%;
14
  }
15
  }
 
16
  .wc-setup {
17
  text-align: center;
18
 
19
  .select2-container {
20
  text-align: left;
21
- width: 100%;
22
  }
 
23
  .hidden {
24
  display: none;
25
  }
26
  }
 
27
  .wc-setup-content {
28
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
29
  padding: 2em;
@@ -33,7 +38,10 @@ body {
33
  zoom: 1;
34
  text-align: left;
35
 
36
- h1, h2, h3, table {
 
 
 
37
  margin: 0 0 20px;
38
  border: 0;
39
  padding: 0;
@@ -41,38 +49,50 @@ body {
41
  clear: none;
42
  font-weight: 500;
43
  }
 
44
  p {
45
  margin: 20px 0;
46
  font-size: 1em;
47
  line-height: 1.75em;
48
  color: #666;
49
  }
 
50
  table {
51
  font-size: 1em;
52
  line-height: 1.75em;
53
  color: #666;
54
  }
 
55
  a {
56
  color: #a16696;
57
- &:hover, &:focus {
 
 
58
  color: #111;
59
  }
60
  }
 
61
  .form-table {
 
62
  th {
63
  width: 35%;
64
  vertical-align: top;
65
  font-weight: normal;
66
  }
 
67
  td {
68
  vertical-align: top;
69
- select, input {
 
 
70
  width: 100%;
71
  box-sizing: border-box;
72
  }
 
73
  input[size] {
74
  width: auto;
75
  }
 
76
  .description {
77
  line-height: 1.5em;
78
  display: block;
@@ -80,7 +100,9 @@ body {
80
  color: #999;
81
  font-style: italic;
82
  }
83
- .input-checkbox, .input-radio {
 
 
84
  width: auto;
85
  box-sizing: inherit;
86
  padding: inherit;
@@ -88,37 +110,48 @@ body {
88
  box-shadow: none;
89
  }
90
  }
 
91
  .section_title {
 
92
  td {
93
  padding: 0;
94
- h2, p {
 
 
95
  margin: 12px 0 0;
96
  }
97
  }
98
  }
99
- th, td {
 
 
100
  padding: 12px 0;
101
  margin: 0;
102
  border: 0;
 
103
  &:first-child {
104
  padding-right: 1em;
105
  }
106
  }
107
  }
 
108
  table.tax-rates {
109
  width: 100%;
110
  font-size: 0.92em;
 
111
  th {
112
  padding: 0;
113
  text-align: center;
114
  width: auto;
115
  vertical-align: middle;
116
  }
 
117
  td {
118
  border: 1px solid #f5f5f5;
119
  padding: 6px;
120
  text-align: center;
121
  vertical-align: middle;
 
122
  input {
123
  outline: 0;
124
  border: 0;
@@ -127,18 +160,22 @@ body {
127
  text-align: center;
128
  width: 100%;
129
  }
 
130
  &.sort {
131
  cursor: move;
132
  color: #ccc;
 
133
  &::before {
134
- content: '\f333';
135
- font-family: 'dashicons';
136
  }
137
  }
 
138
  &.readonly {
139
  background: #f5f5f5;
140
  }
141
  }
 
142
  .add {
143
  padding: 1em 0 0 1em;
144
  line-height: 1em;
@@ -149,14 +186,16 @@ body {
149
  overflow: hidden;
150
  position: relative;
151
  display: inline-block;
 
152
  &::before {
153
- content: '\f502';
154
- font-family: 'dashicons';
155
  position: absolute;
156
  left: 0;
157
  top: 0;
158
  }
159
  }
 
160
  .remove {
161
  padding: 1em 0 0 1em;
162
  line-height: 1em;
@@ -167,40 +206,51 @@ body {
167
  overflow: hidden;
168
  position: relative;
169
  display: inline-block;
 
170
  &::before {
171
- content: '\f182';
172
- font-family: 'dashicons';
173
  position: absolute;
174
  left: 0;
175
  top: 0;
176
  }
177
  }
178
  }
 
179
  .wc-setup-pages {
180
  width: 100%;
181
  border-top: 1px solid #eee;
 
182
  thead th {
183
  display: none;
184
  }
 
185
  .page-name {
186
  width: 30%;
187
  font-weight: bold;
188
  }
189
- th, td {
 
 
190
  padding: 14px 0;
191
  border-bottom: 1px solid #eee;
 
192
  &:first-child {
193
  padding-right: 9px;
194
  }
195
  }
 
196
  th {
197
  padding-top: 0;
198
  }
 
199
  .page-options {
 
200
  p {
201
  color: #777;
202
  margin: 6px 0 0 24px;
203
  line-height: 1.75em;
 
204
  input {
205
  vertical-align: middle;
206
  margin: 1px 0 0;
@@ -208,50 +258,64 @@ body {
208
  width: 1.75em;
209
  line-height: 1.75em;
210
  }
 
211
  label {
212
  line-height: 1;
213
  }
214
  }
215
  }
216
  }
 
217
  @media screen and (max-width: 782px) {
 
218
  .form-table {
 
219
  tbody {
 
220
  th {
221
  width: auto;
222
  }
223
  }
224
  }
225
  }
 
226
  .twitter-share-button {
227
  float: right;
228
  }
 
229
  .wc-setup-next-steps {
230
  overflow: hidden;
231
  margin: 0 0 24px;
232
  padding-bottom: 2px;
 
233
  h2 {
234
  margin-bottom: 12px;
235
  }
 
236
  .wc-setup-next-steps-first {
237
  float: left;
238
  width: 50%;
239
  box-sizing: border-box;
240
  }
 
241
  .wc-setup-next-steps-last {
242
  float: right;
243
  width: 50%;
244
  box-sizing: border-box;
245
  }
 
246
  ul {
247
  padding: 0 2em 0 0;
248
  list-style: none outside;
249
  margin: 0;
 
250
  li a {
251
  display: block;
252
  padding: 0 0 0.75em;
253
  }
 
254
  .setup-product {
 
255
  a.button {
256
  background-color: #f7f7f7;
257
  border-color: #ccc;
@@ -266,11 +330,14 @@ body {
266
  padding: 1em;
267
  text-align: center;
268
 
269
- &:hover, &:focus, &:active {
 
 
270
  background: #f5f5f5;
271
  border-color: #aaa;
272
  }
273
  }
 
274
  a.button-primary {
275
  color: #fff;
276
  background-color: #bb77ae;
@@ -278,7 +345,9 @@ body {
278
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 #a36597;
279
  text-shadow: 0 -1px 1px #a36597, 1px 0 1px #a36597, 0 1px 1px #a36597, -1px 0 1px #a36597;
280
 
281
- &:hover, &:focus, &:active {
 
 
282
  color: #fff;
283
  background: #a36597;
284
  border-color: #a36597;
@@ -286,9 +355,10 @@ body {
286
  }
287
  }
288
  }
 
289
  li a::before {
290
  color: #82878c;
291
- font: normal 20px/1 'dashicons';
292
  speak: none;
293
  display: inline-block;
294
  padding: 0 10px 0 0;
@@ -297,32 +367,39 @@ body {
297
  text-decoration: none !important;
298
  vertical-align: top;
299
  }
 
300
  .learn-more a::before {
301
- content: '\f105';
302
  }
 
303
  .video-walkthrough a::before {
304
- content: '\f126';
305
  }
 
306
  .newsletter a::before {
307
- content: '\f465';
308
  }
309
  }
310
  }
 
311
  .woocommerce-newsletter,
312
  .updated {
313
  padding: 24px 24px 0;
314
  margin: 0 0 24px;
315
  overflow: hidden;
316
  background: #f5f5f5;
 
317
  p {
318
  padding: 0;
319
  margin: 0 0 12px;
320
  }
 
321
  form,
322
  p:last-child {
323
  margin: 0 0 24px;
324
  }
325
  }
 
326
  .woocommerce-tracker {
327
  margin: 24px 0;
328
  border: 1px solid #eee;
@@ -334,6 +411,7 @@ body {
334
  font-size: 14px;
335
  line-height: 1.5em;
336
  }
 
337
  .checkbox {
338
  line-height: 24px;
339
  font-weight: 500;
@@ -342,32 +420,38 @@ body {
342
  margin-bottom: 20px;
343
  }
344
  }
 
345
  .checkbox {
 
346
  input[type="checkbox"] {
347
  opacity: 0;
348
  position: absolute;
349
  left: -9999px;
350
  }
 
351
  label {
352
  position: relative;
353
  display: inline-block;
354
  padding-left: 28px;
355
- &:before,
356
- &:after {
 
357
  position: absolute;
358
  content: "";
359
  display: inline-block;
360
  }
361
- &:before {
 
362
  height: 16px;
363
  width: 16px;
364
- left: 0px;
365
  top: 3px;
366
  border: 1px solid #aaa;
367
  background-color: #fff;
368
  border-radius: 3px;
369
  }
370
- &:after {
 
371
  height: 5px;
372
  width: 9px;
373
  border-left: 2px solid;
@@ -378,29 +462,35 @@ body {
378
  color: #fff;
379
  }
380
  }
 
381
  input[type="checkbox"] + label::after {
382
  content: none;
383
  }
 
384
  input[type="checkbox"]:checked + label::after {
385
  content: "";
386
  }
 
387
  input[type="checkbox"]:focus + label::before {
388
  outline: rgb(59, 153, 252) auto 5px;
389
  }
 
390
  input[type="checkbox"]:checked + label::before {
391
  background: #935687;
392
  border-color: #935687;
393
  }
394
  }
395
  }
 
396
  .wc-setup-steps {
397
  padding: 0 0 24px;
398
  margin: 0;
399
  list-style: none outside;
400
  overflow: hidden;
401
  color: #ccc;
402
- width:100%;
403
  display: inline-flex;
 
404
  li {
405
  width: 100%;
406
  float: left;
@@ -410,6 +500,7 @@ body {
410
  position: relative;
411
  border-bottom: 4px solid #ccc;
412
  line-height: 1.4em;
 
413
  a {
414
  color: #a16696;
415
  text-decoration: none;
@@ -417,14 +508,17 @@ body {
417
  margin: -1.5em;
418
  position: relative;
419
  z-index: 1;
420
- &:hover, &:focus {
 
 
421
  color: #111;
422
  text-decoration: underline;
423
  }
424
  }
425
  }
 
426
  li::before {
427
- content: '';
428
  border: 4px solid #ccc;
429
  border-radius: 100%;
430
  width: 4px;
@@ -436,27 +530,33 @@ body {
436
  margin-bottom: -8px;
437
  background: #fff;
438
  }
 
439
  li.active {
440
  border-color: #a16696;
441
  color: #a16696;
442
  font-weight: bold;
 
443
  &::before {
444
  border-color: #a16696;
445
  }
446
  }
 
447
  li.done {
448
  border-color: #a16696;
449
  color: #a16696;
 
450
  &::before {
451
  border-color: #a16696;
452
  background: #a16696;
453
  }
454
  }
455
  }
 
456
  .wc-setup .wc-setup-actions {
457
  overflow: hidden;
458
  margin: 20px 0 0;
459
  position: relative;
 
460
  .button {
461
  font-size: 1.25em;
462
  padding: 0.5em 1em;
@@ -466,6 +566,7 @@ body {
466
  height: auto;
467
  border-radius: 4px;
468
  }
 
469
  .button-primary {
470
  background-color: #bb77ae;
471
  border-color: #a36597;
@@ -474,7 +575,9 @@ body {
474
  margin: 0;
475
  opacity: 1;
476
 
477
- &:hover, &:focus, &:active {
 
 
478
  background: #a36597;
479
  border-color: #a36597;
480
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 #a36597;
@@ -499,9 +602,10 @@ body {
499
  }
500
 
501
  .wc-wizard-storefront {
 
502
  .wc-wizard-storefront-intro {
503
  padding: 40px 40px 0;
504
- background: #F5F5F5;
505
  text-align: center;
506
 
507
  img {
@@ -510,12 +614,14 @@ body {
510
  display: block;
511
  }
512
  }
 
513
  .wc-wizard-storefront-features {
514
  list-style: none outside;
515
  margin: 0 0 20px;
516
  padding: 0 0 0 30px;
517
  overflow: hidden;
518
  }
 
519
  .wc-wizard-storefront-feature {
520
  margin: 0;
521
  padding: 20px 30px 20px 2em;
@@ -526,31 +632,39 @@ body {
526
  margin-left: -2em;
527
  position: absolute;
528
  }
 
529
  &.first {
530
  clear: both;
531
  float: left;
532
  }
 
533
  &.last {
534
  float: right;
535
  }
536
  }
 
537
  .wc-wizard-storefront-feature__bulletproof::before {
538
- content: '🔒';
539
  }
 
540
  .wc-wizard-storefront-feature__mobile::before {
541
- content: '📱';
542
  }
 
543
  .wc-wizard-storefront-feature__accessibility::before {
544
- content: '👓';
545
  }
 
546
  .wc-wizard-storefront-feature__search::before {
547
- content: '🔍';
548
  }
 
549
  .wc-wizard-storefront-feature__compatibility::before {
550
- content: '🔧';
551
  }
 
552
  .wc-wizard-storefront-feature__extendable::before {
553
- content: '🎨';
554
  }
555
  }
556
 
@@ -617,22 +731,14 @@ body {
617
  padding: 2px 0;
618
  }
619
 
620
- &.klarna-logo .wc-wizard-service-name {
621
- background: #000000;
622
-
623
- img {
624
- max-width: 87px;
625
- padding: 12px 0;
626
- }
627
  }
628
 
629
- &.square-logo .wc-wizard-service-name {
630
- background: #000000;
631
-
632
- img {
633
- max-width: 95px;
634
- padding: 12px 0;
635
- }
636
  }
637
 
638
  &.eway-logo .wc-wizard-service-name img {
@@ -688,7 +794,7 @@ body {
688
  display: none;
689
  }
690
 
691
- &:before {
692
  content: "";
693
  display: block;
694
  width: 16px;
@@ -704,7 +810,7 @@ body {
704
  border-color: #999;
705
  background-color: #999;
706
 
707
- &:before {
708
  right: auto;
709
  left: 0;
710
  }
@@ -723,6 +829,7 @@ body {
723
  }
724
 
725
  &.checked {
 
726
  .wc-wizard-service-settings {
727
  display: inline-block;
728
 
@@ -752,11 +859,14 @@ body {
752
  position: absolute;
753
  visibility: visible;
754
  }
 
755
  &.closed {
 
756
  .wc-wizard-service-enable::before {
757
  content: "\f347"; // down chevron
758
  }
759
  }
 
760
  .wc-wizard-service-enable input {
761
  visibility: hidden;
762
  position: relative;
@@ -819,12 +929,14 @@ body {
819
  flex-direction: column;
820
  color: #a6a6a6;
821
  }
 
822
  .wc-wizard-service-item:not(:first-child) .wc-wizard-service-description {
823
  font-size: 0.92em;
824
  padding-bottom: 10px;
825
  }
826
 
827
  .shipping-method-setting {
 
828
  input {
829
  width: 95px; // match dropdown height
830
  border: 1px solid #aaa;
@@ -843,14 +955,16 @@ body {
843
  .shipping-method-description,
844
  .shipping-method-setting .description {
845
  color: #7e7e7e;
846
- font-size: .9em;
847
  }
848
 
849
  .shipping-method-setting input::placeholder {
850
  color: #e1e1e1;
851
  }
852
  }
 
853
  .wc-setup-shipping-units {
 
854
  p {
855
  line-height: 1.5em;
856
  font-size: 13px;
@@ -879,7 +993,7 @@ body {
879
  padding: 0;
880
 
881
  .wc-wizard-feature-item {
882
- flex-basis: calc( 50% - 4em - 3px); // two columns, account for padding and borders
883
  border: 1px solid #eee;
884
  padding: 2em;
885
  }
@@ -917,16 +1031,20 @@ h3.jetpack-reasons {
917
  font-size: 14px;
918
  }
919
 
920
- .jetpack-logo, .wcs-notice {
 
921
  display: block;
922
  margin: 1.75em auto 2em auto;
923
  max-height: 175px;
924
  }
 
925
  .activate-splash {
 
926
  .jetpack-logo {
927
  width: 170px;
928
  margin-bottom: 0;
929
  }
 
930
  .wcs-notice {
931
  margin-top: 1em;
932
  padding-left: 57px;
@@ -944,7 +1062,7 @@ h3.jetpack-reasons {
944
  box-shadow: none;
945
  min-width: 12em;
946
  min-width: auto;
947
- margin-top:10px;
948
 
949
  &:focus,
950
  &:hover,
@@ -966,11 +1084,11 @@ h3.jetpack-reasons {
966
  }
967
 
968
  .plugin-install-info-list-item::after {
969
- content: ', ';
970
  }
971
 
972
  .plugin-install-info-list-item:last-of-type::after {
973
- content: '. ';
974
  }
975
 
976
  a {
@@ -983,7 +1101,7 @@ h3.jetpack-reasons {
983
  }
984
 
985
  .plugin-install-source {
986
- $background: rgba( #bb77ae, 0.15 );
987
  background: $background;
988
 
989
  &:not(.wc-wizard-service-item) {
@@ -1019,12 +1137,14 @@ h3.jetpack-reasons {
1019
  }
1020
 
1021
  .address-step {
 
1022
  .select2 {
1023
  min-width: 100%; // widen currency, product type dropdowns
1024
  }
1025
  }
1026
 
1027
  .store-address-container {
 
1028
  .city-and-postcode {
1029
  display: flex;
1030
 
@@ -1037,21 +1157,25 @@ h3.jetpack-reasons {
1037
  }
1038
  }
1039
  }
 
1040
  input[type="text"],
1041
  select,
1042
  .select2-container {
1043
  margin-bottom: 10px;
1044
  }
1045
  }
 
1046
  .product-type-container {
1047
  margin-top: 14px;
1048
  margin-bottom: 1px;
1049
  }
 
1050
  #woocommerce_sell_in_person {
1051
  margin-left: 0;
1052
  }
1053
 
1054
  .wc-wizard-service-settings {
 
1055
  .payment-email-input {
1056
  border: 1px solid #aaa;
1057
  border-color: #ddd;
@@ -1132,6 +1256,7 @@ h3.jetpack-reasons {
1132
  }
1133
 
1134
  p {
 
1135
  &.next-step-heading {
1136
  margin: 0;
1137
  font-size: 0.95em;
@@ -1145,6 +1270,7 @@ h3.jetpack-reasons {
1145
  }
1146
 
1147
  h3 {
 
1148
  &.next-step-description {
1149
  margin: 0;
1150
  font-size: 16px;
@@ -1166,6 +1292,7 @@ h3.jetpack-reasons {
1166
  font-size: 15px;
1167
  margin: 1em 0 1em 1.5em;
1168
  }
 
1169
  .button::last-child {
1170
  margin-right: 1.5em;
1171
  }
@@ -1177,11 +1304,11 @@ p.next-steps-help-text {
1177
  color: #9f9f9f;
1178
  padding: 0 2em;
1179
  text-align: center;
1180
- font-size: .9em;
1181
  }
1182
 
1183
  p.jetpack-terms {
1184
- font-size: .8em;
1185
  text-align: center;
1186
  max-width: 480px;
1187
  margin: 0 auto;
@@ -1213,7 +1340,8 @@ p.jetpack-terms {
1213
  }
1214
  }
1215
 
1216
- .wc-wizard-service-setting-stripe_create_account, .wc-wizard-service-setting-ppec_paypal_reroute_requests {
 
1217
  display: flex;
1218
  align-items: flex-start;
1219
 
@@ -1225,17 +1353,20 @@ p.jetpack-terms {
1225
  width: 1.5em;
1226
  }
1227
 
1228
- .stripe_create_account, .ppec_paypal_reroute_requests {
 
1229
  order: 2;
1230
  margin-left: 0.3em;
1231
  }
1232
  }
1233
 
1234
- .wc-wizard-service-setting-stripe_email, .wc-wizard-service-setting-ppec_paypal_email {
 
1235
  margin-top: 0.75em;
1236
  margin-left: 1.5em;
1237
 
1238
- label.stripe_email, label.ppec_paypal_email {
 
1239
  position: absolute;
1240
  margin: -1px;
1241
  padding: 0;
@@ -1248,7 +1379,7 @@ p.jetpack-terms {
1248
 
1249
  input.payment-email-input {
1250
  box-sizing: border-box;
1251
- margin-bottom: .5em;
1252
  width: 100%;
1253
  height: 32px;
1254
  }
@@ -1272,10 +1403,12 @@ p.jetpack-terms {
1272
  align-items: center;
1273
  margin-bottom: 1.5em;
1274
 
1275
- &:before, &:after {
 
1276
  top: auto;
1277
  }
1278
- &:after {
 
1279
  margin-top: -1.5px;
1280
  }
1281
  }
@@ -1309,16 +1442,17 @@ p.jetpack-terms {
1309
  &.recommended-item-icon-woocommerce_services {
1310
  background-color: #f0f0f0;
1311
  max-height: 1.5em;
1312
- padding: 1.3em .7em;
1313
  }
1314
 
1315
  &.recommended-item-icon-shipstation {
1316
  background-color: #f0f0f0;
1317
- padding: .3em;
1318
  }
1319
  }
1320
 
1321
  .recommended-item-description-container {
 
1322
  h3 {
1323
  font-size: 15px;
1324
  font-weight: bold;
@@ -1343,13 +1477,14 @@ p.jetpack-terms {
1343
  }
1344
 
1345
  .wc-setup {
1346
- #tiptip_content {
1347
- background: #5f6973;
1348
- }
1349
 
1350
- #tiptip_holder.tip_top #tiptip_arrow_inner {
1351
- border-top-color: #5f6973;
1352
- }
 
 
 
 
1353
  }
1354
 
1355
  .wc-setup-shipping-recommended {
@@ -1359,13 +1494,17 @@ p.jetpack-terms {
1359
  }
1360
 
1361
  @media only screen and (max-width: 400px) {
 
1362
  #wc-logo img {
1363
  max-width: 80%;
1364
  }
 
1365
  .wc-setup-steps {
1366
  display: none;
1367
  }
 
1368
  .store-address-container {
 
1369
  .city-and-postcode {
1370
  display: block;
1371
 
@@ -1374,43 +1513,55 @@ p.jetpack-terms {
1374
  }
1375
  }
1376
  }
 
1377
  .wc-wizard-service-item,
1378
  .wc-wizard-services-list-toggle {
1379
  flex-wrap: wrap;
 
1380
  .wc-wizard-service-enable {
1381
  order: 2;
1382
  padding: 20px 0 0;
1383
  }
 
1384
  .wc-wizard-service-description {
1385
  order: 3;
1386
  }
 
1387
  .wc-wizard-service-name {
1388
  padding: 20px 20px 0;
1389
  text-align: left;
1390
  justify-content: space-between !important;
 
1391
  img {
1392
  margin: 0;
1393
  }
1394
  }
1395
  }
 
1396
  .newsletter-form-container {
1397
  display: block;
 
1398
  .newsletter-form-email {
1399
  display: block;
1400
  box-sizing: border-box;
1401
  width: 100%;
1402
  margin-bottom: 10px;
1403
  }
 
1404
  .button.newsletter-form-button {
1405
  float: left;
1406
  }
1407
  }
 
1408
  .wc-wizard-next-steps .wc-wizard-next-step-item {
1409
  flex-wrap: wrap;
 
1410
  .wc-wizard-next-step-description {
1411
  margin-bottom: 0;
1412
  }
 
1413
  .wc-wizard-next-step-action {
 
1414
  p {
1415
  margin: 0;
1416
  }
4
  background: #f1f1f1;
5
  padding: 0;
6
  }
7
+
8
  #wc-logo {
9
  border: 0;
10
  margin: 0 0 24px;
11
  padding: 0;
12
  text-align: center;
13
+
14
  img {
15
  max-width: 30%;
16
  }
17
  }
18
+
19
  .wc-setup {
20
  text-align: center;
21
 
22
  .select2-container {
23
  text-align: left;
24
+ width: auto;
25
  }
26
+
27
  .hidden {
28
  display: none;
29
  }
30
  }
31
+
32
  .wc-setup-content {
33
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
34
  padding: 2em;
38
  zoom: 1;
39
  text-align: left;
40
 
41
+ h1,
42
+ h2,
43
+ h3,
44
+ table {
45
  margin: 0 0 20px;
46
  border: 0;
47
  padding: 0;
49
  clear: none;
50
  font-weight: 500;
51
  }
52
+
53
  p {
54
  margin: 20px 0;
55
  font-size: 1em;
56
  line-height: 1.75em;
57
  color: #666;
58
  }
59
+
60
  table {
61
  font-size: 1em;
62
  line-height: 1.75em;
63
  color: #666;
64
  }
65
+
66
  a {
67
  color: #a16696;
68
+
69
+ &:hover,
70
+ &:focus {
71
  color: #111;
72
  }
73
  }
74
+
75
  .form-table {
76
+
77
  th {
78
  width: 35%;
79
  vertical-align: top;
80
  font-weight: normal;
81
  }
82
+
83
  td {
84
  vertical-align: top;
85
+
86
+ select,
87
+ input {
88
  width: 100%;
89
  box-sizing: border-box;
90
  }
91
+
92
  input[size] {
93
  width: auto;
94
  }
95
+
96
  .description {
97
  line-height: 1.5em;
98
  display: block;
100
  color: #999;
101
  font-style: italic;
102
  }
103
+
104
+ .input-checkbox,
105
+ .input-radio {
106
  width: auto;
107
  box-sizing: inherit;
108
  padding: inherit;
110
  box-shadow: none;
111
  }
112
  }
113
+
114
  .section_title {
115
+
116
  td {
117
  padding: 0;
118
+
119
+ h2,
120
+ p {
121
  margin: 12px 0 0;
122
  }
123
  }
124
  }
125
+
126
+ th,
127
+ td {
128
  padding: 12px 0;
129
  margin: 0;
130
  border: 0;
131
+
132
  &:first-child {
133
  padding-right: 1em;
134
  }
135
  }
136
  }
137
+
138
  table.tax-rates {
139
  width: 100%;
140
  font-size: 0.92em;
141
+
142
  th {
143
  padding: 0;
144
  text-align: center;
145
  width: auto;
146
  vertical-align: middle;
147
  }
148
+
149
  td {
150
  border: 1px solid #f5f5f5;
151
  padding: 6px;
152
  text-align: center;
153
  vertical-align: middle;
154
+
155
  input {
156
  outline: 0;
157
  border: 0;
160
  text-align: center;
161
  width: 100%;
162
  }
163
+
164
  &.sort {
165
  cursor: move;
166
  color: #ccc;
167
+
168
  &::before {
169
+ content: "\f333";
170
+ font-family: "dashicons";
171
  }
172
  }
173
+
174
  &.readonly {
175
  background: #f5f5f5;
176
  }
177
  }
178
+
179
  .add {
180
  padding: 1em 0 0 1em;
181
  line-height: 1em;
186
  overflow: hidden;
187
  position: relative;
188
  display: inline-block;
189
+
190
  &::before {
191
+ content: "\f502";
192
+ font-family: "dashicons";
193
  position: absolute;
194
  left: 0;
195
  top: 0;
196
  }
197
  }
198
+
199
  .remove {
200
  padding: 1em 0 0 1em;
201
  line-height: 1em;
206
  overflow: hidden;
207
  position: relative;
208
  display: inline-block;
209
+
210
  &::before {
211
+ content: "\f182";
212
+ font-family: "dashicons";
213
  position: absolute;
214
  left: 0;
215
  top: 0;
216
  }
217
  }
218
  }
219
+
220
  .wc-setup-pages {
221
  width: 100%;
222
  border-top: 1px solid #eee;
223
+
224
  thead th {
225
  display: none;
226
  }
227
+
228
  .page-name {
229
  width: 30%;
230
  font-weight: bold;
231
  }
232
+
233
+ th,
234
+ td {
235
  padding: 14px 0;
236
  border-bottom: 1px solid #eee;
237
+
238
  &:first-child {
239
  padding-right: 9px;
240
  }
241
  }
242
+
243
  th {
244
  padding-top: 0;
245
  }
246
+
247
  .page-options {
248
+
249
  p {
250
  color: #777;
251
  margin: 6px 0 0 24px;
252
  line-height: 1.75em;
253
+
254
  input {
255
  vertical-align: middle;
256
  margin: 1px 0 0;
258
  width: 1.75em;
259
  line-height: 1.75em;
260
  }
261
+
262
  label {
263
  line-height: 1;
264
  }
265
  }
266
  }
267
  }
268
+
269
  @media screen and (max-width: 782px) {
270
+
271
  .form-table {
272
+
273
  tbody {
274
+
275
  th {
276
  width: auto;
277
  }
278
  }
279
  }
280
  }
281
+
282
  .twitter-share-button {
283
  float: right;
284
  }
285
+
286
  .wc-setup-next-steps {
287
  overflow: hidden;
288
  margin: 0 0 24px;
289
  padding-bottom: 2px;
290
+
291
  h2 {
292
  margin-bottom: 12px;
293
  }
294
+
295
  .wc-setup-next-steps-first {
296
  float: left;
297
  width: 50%;
298
  box-sizing: border-box;
299
  }
300
+
301
  .wc-setup-next-steps-last {
302
  float: right;
303
  width: 50%;
304
  box-sizing: border-box;
305
  }
306
+
307
  ul {
308
  padding: 0 2em 0 0;
309
  list-style: none outside;
310
  margin: 0;
311
+
312
  li a {
313
  display: block;
314
  padding: 0 0 0.75em;
315
  }
316
+
317
  .setup-product {
318
+
319
  a.button {
320
  background-color: #f7f7f7;
321
  border-color: #ccc;
330
  padding: 1em;
331
  text-align: center;
332
 
333
+ &:hover,
334
+ &:focus,
335
+ &:active {
336
  background: #f5f5f5;
337
  border-color: #aaa;
338
  }
339
  }
340
+
341
  a.button-primary {
342
  color: #fff;
343
  background-color: #bb77ae;
345
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 #a36597;
346
  text-shadow: 0 -1px 1px #a36597, 1px 0 1px #a36597, 0 1px 1px #a36597, -1px 0 1px #a36597;
347
 
348
+ &:hover,
349
+ &:focus,
350
+ &:active {
351
  color: #fff;
352
  background: #a36597;
353
  border-color: #a36597;
355
  }
356
  }
357
  }
358
+
359
  li a::before {
360
  color: #82878c;
361
+ font: normal 20px/1 "dashicons";
362
  speak: none;
363
  display: inline-block;
364
  padding: 0 10px 0 0;
367
  text-decoration: none !important;
368
  vertical-align: top;
369
  }
370
+
371
  .learn-more a::before {
372
+ content: "\f105";
373
  }
374
+
375
  .video-walkthrough a::before {
376
+ content: "\f126";
377
  }
378
+
379
  .newsletter a::before {
380
+ content: "\f465";
381
  }
382
  }
383
  }
384
+
385
  .woocommerce-newsletter,
386
  .updated {
387
  padding: 24px 24px 0;
388
  margin: 0 0 24px;
389
  overflow: hidden;
390
  background: #f5f5f5;
391
+
392
  p {
393
  padding: 0;
394
  margin: 0 0 12px;
395
  }
396
+
397
  form,
398
  p:last-child {
399
  margin: 0 0 24px;
400
  }
401
  }
402
+
403
  .woocommerce-tracker {
404
  margin: 24px 0;
405
  border: 1px solid #eee;
411
  font-size: 14px;
412
  line-height: 1.5em;
413
  }
414
+
415
  .checkbox {
416
  line-height: 24px;
417
  font-weight: 500;
420
  margin-bottom: 20px;
421
  }
422
  }
423
+
424
  .checkbox {
425
+
426
  input[type="checkbox"] {
427
  opacity: 0;
428
  position: absolute;
429
  left: -9999px;
430
  }
431
+
432
  label {
433
  position: relative;
434
  display: inline-block;
435
  padding-left: 28px;
436
+
437
+ &::before,
438
+ &::after {
439
  position: absolute;
440
  content: "";
441
  display: inline-block;
442
  }
443
+
444
+ &::before {
445
  height: 16px;
446
  width: 16px;
447
+ left: 0;
448
  top: 3px;
449
  border: 1px solid #aaa;
450
  background-color: #fff;
451
  border-radius: 3px;
452
  }
453
+
454
+ &::after {
455
  height: 5px;
456
  width: 9px;
457
  border-left: 2px solid;
462
  color: #fff;
463
  }
464
  }
465
+
466
  input[type="checkbox"] + label::after {
467
  content: none;
468
  }
469
+
470
  input[type="checkbox"]:checked + label::after {
471
  content: "";
472
  }
473
+
474
  input[type="checkbox"]:focus + label::before {
475
  outline: rgb(59, 153, 252) auto 5px;
476
  }
477
+
478
  input[type="checkbox"]:checked + label::before {
479
  background: #935687;
480
  border-color: #935687;
481
  }
482
  }
483
  }
484
+
485
  .wc-setup-steps {
486
  padding: 0 0 24px;
487
  margin: 0;
488
  list-style: none outside;
489
  overflow: hidden;
490
  color: #ccc;
491
+ width: 100%;
492
  display: inline-flex;
493
+
494
  li {
495
  width: 100%;
496
  float: left;
500
  position: relative;
501
  border-bottom: 4px solid #ccc;
502
  line-height: 1.4em;
503
+
504
  a {
505
  color: #a16696;
506
  text-decoration: none;
508
  margin: -1.5em;
509
  position: relative;
510
  z-index: 1;
511
+
512
+ &:hover,
513
+ &:focus {
514
  color: #111;
515
  text-decoration: underline;
516
  }
517
  }
518
  }
519
+
520
  li::before {
521
+ content: "";
522
  border: 4px solid #ccc;
523
  border-radius: 100%;
524
  width: 4px;
530
  margin-bottom: -8px;
531
  background: #fff;
532
  }
533
+
534
  li.active {
535
  border-color: #a16696;
536
  color: #a16696;
537
  font-weight: bold;
538
+
539
  &::before {
540
  border-color: #a16696;
541
  }
542
  }
543
+
544
  li.done {
545
  border-color: #a16696;
546
  color: #a16696;
547
+
548
  &::before {
549
  border-color: #a16696;
550
  background: #a16696;
551
  }
552
  }
553
  }
554
+
555
  .wc-setup .wc-setup-actions {
556
  overflow: hidden;
557
  margin: 20px 0 0;
558
  position: relative;
559
+
560
  .button {
561
  font-size: 1.25em;
562
  padding: 0.5em 1em;
566
  height: auto;
567
  border-radius: 4px;
568
  }
569
+
570
  .button-primary {
571
  background-color: #bb77ae;
572
  border-color: #a36597;
575
  margin: 0;
576
  opacity: 1;
577
 
578
+ &:hover,
579
+ &:focus,
580
+ &:active {
581
  background: #a36597;
582
  border-color: #a36597;
583
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 #a36597;
602
  }
603
 
604
  .wc-wizard-storefront {
605
+
606
  .wc-wizard-storefront-intro {
607
  padding: 40px 40px 0;
608
+ background: #f5f5f5;
609
  text-align: center;
610
 
611
  img {
614
  display: block;
615
  }
616
  }
617
+
618
  .wc-wizard-storefront-features {
619
  list-style: none outside;
620
  margin: 0 0 20px;
621
  padding: 0 0 0 30px;
622
  overflow: hidden;
623
  }
624
+
625
  .wc-wizard-storefront-feature {
626
  margin: 0;
627
  padding: 20px 30px 20px 2em;
632
  margin-left: -2em;
633
  position: absolute;
634
  }
635
+
636
  &.first {
637
  clear: both;
638
  float: left;
639
  }
640
+
641
  &.last {
642
  float: right;
643
  }
644
  }
645
+
646
  .wc-wizard-storefront-feature__bulletproof::before {
647
+ content: "🔒";
648
  }
649
+
650
  .wc-wizard-storefront-feature__mobile::before {
651
+ content: "📱";
652
  }
653
+
654
  .wc-wizard-storefront-feature__accessibility::before {
655
+ content: "👓";
656
  }
657
+
658
  .wc-wizard-storefront-feature__search::before {
659
+ content: "🔍";
660
  }
661
+
662
  .wc-wizard-storefront-feature__compatibility::before {
663
+ content: "🔧";
664
  }
665
+
666
  .wc-wizard-storefront-feature__extendable::before {
667
+ content: "🎨";
668
  }
669
  }
670
 
731
  padding: 2px 0;
732
  }
733
 
734
+ &.klarna-logo .wc-wizard-service-name img {
735
+ max-width: 87px;
736
+ padding: 12px 0;
 
 
 
 
737
  }
738
 
739
+ &.square-logo .wc-wizard-service-name img {
740
+ max-width: 95px;
741
+ padding: 12px 0;
 
 
 
 
742
  }
743
 
744
  &.eway-logo .wc-wizard-service-name img {
794
  display: none;
795
  }
796
 
797
+ &::before {
798
  content: "";
799
  display: block;
800
  width: 16px;
810
  border-color: #999;
811
  background-color: #999;
812
 
813
+ &::before {
814
  right: auto;
815
  left: 0;
816
  }
829
  }
830
 
831
  &.checked {
832
+
833
  .wc-wizard-service-settings {
834
  display: inline-block;
835
 
859
  position: absolute;
860
  visibility: visible;
861
  }
862
+
863
  &.closed {
864
+
865
  .wc-wizard-service-enable::before {
866
  content: "\f347"; // down chevron
867
  }
868
  }
869
+
870
  .wc-wizard-service-enable input {
871
  visibility: hidden;
872
  position: relative;
929
  flex-direction: column;
930
  color: #a6a6a6;
931
  }
932
+
933
  .wc-wizard-service-item:not(:first-child) .wc-wizard-service-description {
934
  font-size: 0.92em;
935
  padding-bottom: 10px;
936
  }
937
 
938
  .shipping-method-setting {
939
+
940
  input {
941
  width: 95px; // match dropdown height
942
  border: 1px solid #aaa;
955
  .shipping-method-description,
956
  .shipping-method-setting .description {
957
  color: #7e7e7e;
958
+ font-size: 0.9em;
959
  }
960
 
961
  .shipping-method-setting input::placeholder {
962
  color: #e1e1e1;
963
  }
964
  }
965
+
966
  .wc-setup-shipping-units {
967
+
968
  p {
969
  line-height: 1.5em;
970
  font-size: 13px;
993
  padding: 0;
994
 
995
  .wc-wizard-feature-item {
996
+ flex-basis: calc(50% - 4em - 3px); // two columns, account for padding and borders
997
  border: 1px solid #eee;
998
  padding: 2em;
999
  }
1031
  font-size: 14px;
1032
  }
1033
 
1034
+ .jetpack-logo,
1035
+ .wcs-notice {
1036
  display: block;
1037
  margin: 1.75em auto 2em auto;
1038
  max-height: 175px;
1039
  }
1040
+
1041
  .activate-splash {
1042
+
1043
  .jetpack-logo {
1044
  width: 170px;
1045
  margin-bottom: 0;
1046
  }
1047
+
1048
  .wcs-notice {
1049
  margin-top: 1em;
1050
  padding-left: 57px;
1062
  box-shadow: none;
1063
  min-width: 12em;
1064
  min-width: auto;
1065
+ margin-top: 10px;
1066
 
1067
  &:focus,
1068
  &:hover,
1084
  }
1085
 
1086
  .plugin-install-info-list-item::after {
1087
+ content: ", ";
1088
  }
1089
 
1090
  .plugin-install-info-list-item:last-of-type::after {
1091
+ content: ". ";
1092
  }
1093
 
1094
  a {
1101
  }
1102
 
1103
  .plugin-install-source {
1104
+ $background: rgba(#bb77ae, 0.15);
1105
  background: $background;
1106
 
1107
  &:not(.wc-wizard-service-item) {
1137
  }
1138
 
1139
  .address-step {
1140
+
1141
  .select2 {
1142
  min-width: 100%; // widen currency, product type dropdowns
1143
  }
1144
  }
1145
 
1146
  .store-address-container {
1147
+
1148
  .city-and-postcode {
1149
  display: flex;
1150
 
1157
  }
1158
  }
1159
  }
1160
+
1161
  input[type="text"],
1162
  select,
1163
  .select2-container {
1164
  margin-bottom: 10px;
1165
  }
1166
  }
1167
+
1168
  .product-type-container {
1169
  margin-top: 14px;
1170
  margin-bottom: 1px;
1171
  }
1172
+
1173
  #woocommerce_sell_in_person {
1174
  margin-left: 0;
1175
  }
1176
 
1177
  .wc-wizard-service-settings {
1178
+
1179
  .payment-email-input {
1180
  border: 1px solid #aaa;
1181
  border-color: #ddd;
1256
  }
1257
 
1258
  p {
1259
+
1260
  &.next-step-heading {
1261
  margin: 0;
1262
  font-size: 0.95em;
1270
  }
1271
 
1272
  h3 {
1273
+
1274
  &.next-step-description {
1275
  margin: 0;
1276
  font-size: 16px;
1292
  font-size: 15px;
1293
  margin: 1em 0 1em 1.5em;
1294
  }
1295
+
1296
  .button::last-child {
1297
  margin-right: 1.5em;
1298
  }
1304
  color: #9f9f9f;
1305
  padding: 0 2em;
1306
  text-align: center;
1307
+ font-size: 0.9em;
1308
  }
1309
 
1310
  p.jetpack-terms {
1311
+ font-size: 0.8em;
1312
  text-align: center;
1313
  max-width: 480px;
1314
  margin: 0 auto;
1340
  }
1341
  }
1342
 
1343
+ .wc-wizard-service-setting-stripe_create_account,
1344
+ .wc-wizard-service-setting-ppec_paypal_reroute_requests {
1345
  display: flex;
1346
  align-items: flex-start;
1347
 
1353
  width: 1.5em;
1354
  }
1355
 
1356
+ .stripe_create_account,
1357
+ .ppec_paypal_reroute_requests {
1358
  order: 2;
1359
  margin-left: 0.3em;
1360
  }
1361
  }
1362
 
1363
+ .wc-wizard-service-setting-stripe_email,
1364
+ .wc-wizard-service-setting-ppec_paypal_email {
1365
  margin-top: 0.75em;
1366
  margin-left: 1.5em;
1367
 
1368
+ label.stripe_email,
1369
+ label.ppec_paypal_email {
1370
  position: absolute;
1371
  margin: -1px;
1372
  padding: 0;
1379
 
1380
  input.payment-email-input {
1381
  box-sizing: border-box;
1382
+ margin-bottom: 0.5em;
1383
  width: 100%;
1384
  height: 32px;
1385
  }
1403
  align-items: center;
1404
  margin-bottom: 1.5em;
1405
 
1406
+ &::before,
1407
+ &::after {
1408
  top: auto;
1409
  }
1410
+
1411
+ &::after {
1412
  margin-top: -1.5px;
1413
  }
1414
  }
1442
  &.recommended-item-icon-woocommerce_services {
1443
  background-color: #f0f0f0;
1444
  max-height: 1.5em;
1445
+ padding: 1.3em 0.7em;
1446
  }
1447
 
1448
  &.recommended-item-icon-shipstation {
1449
  background-color: #f0f0f0;
1450
+ padding: 0.3em;
1451
  }
1452
  }
1453
 
1454
  .recommended-item-description-container {
1455
+
1456
  h3 {
1457
  font-size: 15px;
1458
  font-weight: bold;
1477
  }
1478
 
1479
  .wc-setup {
 
 
 
1480
 
1481
+ #tiptip_content {
1482
+ background: #5f6973;
1483
+ }
1484
+
1485
+ #tiptip_holder.tip_top #tiptip_arrow_inner {
1486
+ border-top-color: #5f6973;
1487
+ }
1488
  }
1489
 
1490
  .wc-setup-shipping-recommended {
1494
  }
1495
 
1496
  @media only screen and (max-width: 400px) {
1497
+
1498
  #wc-logo img {
1499
  max-width: 80%;
1500
  }
1501
+
1502
  .wc-setup-steps {
1503
  display: none;
1504
  }
1505
+
1506
  .store-address-container {
1507
+
1508
  .city-and-postcode {
1509
  display: block;
1510
 
1513
  }
1514
  }
1515
  }
1516
+
1517
  .wc-wizard-service-item,
1518
  .wc-wizard-services-list-toggle {
1519
  flex-wrap: wrap;
1520
+
1521
  .wc-wizard-service-enable {
1522
  order: 2;
1523
  padding: 20px 0 0;
1524
  }
1525
+
1526
  .wc-wizard-service-description {
1527
  order: 3;
1528
  }
1529
+
1530
  .wc-wizard-service-name {
1531
  padding: 20px 20px 0;
1532
  text-align: left;
1533
  justify-content: space-between !important;
1534
+
1535
  img {
1536
  margin: 0;
1537
  }
1538
  }
1539
  }
1540
+
1541
  .newsletter-form-container {
1542
  display: block;
1543
+
1544
  .newsletter-form-email {
1545
  display: block;
1546
  box-sizing: border-box;
1547
  width: 100%;
1548
  margin-bottom: 10px;
1549
  }
1550
+
1551
  .button.newsletter-form-button {
1552
  float: left;
1553
  }
1554
  }
1555
+
1556
  .wc-wizard-next-steps .wc-wizard-next-step-item {
1557
  flex-wrap: wrap;
1558
+
1559
  .wc-wizard-next-step-description {
1560
  margin-bottom: 0;
1561
  }
1562
+
1563
  .wc-wizard-next-step-action {
1564
+
1565
  p {
1566
  margin: 0;
1567
  }
assets/images/klarna-black.png ADDED
Binary file
assets/images/square-black.png ADDED
Binary file
assets/js/admin/meta-boxes-order.js CHANGED
@@ -83,7 +83,7 @@ jQuery( function ( $ ) {
83
  .prop( 'name', input_name )
84
  .prop( 'placeholder', placeholder )
85
  .addClass( 'js_field-state' )
86
- .val( value );
87
  $state.replaceWith( $newstate );
88
  }
89
 
83
  .prop( 'name', input_name )
84
  .prop( 'placeholder', placeholder )
85
  .addClass( 'js_field-state' )
86
+ .val( '' );
87
  $state.replaceWith( $newstate );
88
  }
89
 
assets/js/admin/meta-boxes-order.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(u){var p={states:null,init:function(){"undefined"!=typeof woocommerce_admin_meta_boxes_order&&"undefined"!=typeof woocommerce_admin_meta_boxes_order.countries&&(this.states=u.parseJSON(woocommerce_admin_meta_boxes_order.countries.replace(/&quot;/g,'"'))),u(".js_field-country").selectWoo().change(this.change_country),u(".js_field-country").trigger("change",[!0]),u(document.body).on("change","select.js_field-state",this.change_state),u("#woocommerce-order-actions input, #woocommerce-order-actions a").click(function(){window.onbeforeunload=""}),u("a.edit_address").click(this.edit_address),u("a.billing-same-as-shipping").on("click",this.copy_billing_to_shipping),u("a.load_customer_billing").on("click",this.load_billing),u("a.load_customer_shipping").on("click",this.load_shipping),u("#customer_user").on("change",this.change_customer_user)},change_country:function(e,o){if(void 0===o&&(o=!1),null!==p.states){var t,a=u(this),i=a.val(),n=a.parents("div.edit_address").find(":input.js_field-state"),r=n.parent(),c=n.attr("name"),d=n.attr("id"),m=a.data("woocommerce.stickState-"+i)?a.data("woocommerce.stickState-"+i):n.val(),_=n.attr("placeholder");if(o&&a.data("woocommerce.stickState-"+i,m),r.show().find(".select2-container").remove(),u.isEmptyObject(p.states[i]))t=u('<input type="text" />').prop("id",d).prop("name",c).prop("placeholder",_).addClass("js_field-state").val(m),n.replaceWith(t);else{var s=p.states[i],l=u('<option value=""></option>').text(woocommerce_admin_meta_boxes_order.i18n_select_state_text);t=u("<select></select>").prop("id",d).prop("name",c).prop("placeholder",_).addClass("js_field-state select short").append(l),u.each(s,function(e){var o=u("<option></option>").prop("value",e).text(s[e]);t.append(o)}),t.val(m),n.replaceWith(t),t.show().selectWoo().hide().change()}u(document.body).trigger("contry-change.woocommerce",[i,u(this).closest("div")]),u(document.body).trigger("country-change.woocommerce",[i,u(this).closest("div")])}},change_state:function(){var e=u(this),o=e.val(),t=e.parents("div.edit_address").find(":input.js_field-country"),a=t.val();t.data("woocommerce.stickState-"+a,o)},init_tiptip:function(){u("#tiptip_holder").removeAttr("style"),u("#tiptip_arrow").removeAttr("style"),u(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200})},edit_address:function(e){e.preventDefault();var o=u(this),t=o.closest(".order_data_column"),a=t.find("div.edit_address"),i=t.find("div.address"),n=a.find(".js_field-country"),r=a.find(".js_field-state");i.hide(),o.parent().find("a").toggle(),n.val()||(n.val(woocommerce_admin_meta_boxes_order.default_country).change(),r.val(woocommerce_admin_meta_boxes_order.default_state).change()),a.show()},change_customer_user:function(){u("#_billing_country").val()||(u("a.edit_address").click(),p.load_billing(!0),p.load_shipping(!0))},load_billing:function(e){if(!0===e||window.confirm(woocommerce_admin_meta_boxes.load_billing)){var o=u("#customer_user").val();if(!o)return window.alert(woocommerce_admin_meta_boxes.no_customer_selected),!1;var t={user_id:o,action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};u(this).closest("div.edit_address").block({message:null,overlayCSS:{background:"#fff",opacity:.6}}),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:t,type:"POST",success:function(e){e&&e.billing&&u.each(e.billing,function(e,o){u(":input#_billing_"+e).val(o).change()}),u("div.edit_address").unblock()}})}return!1},load_shipping:function(e){if(!0===e||window.confirm(woocommerce_admin_meta_boxes.load_shipping)){var o=u("#customer_user").val();if(!o)return window.alert(woocommerce_admin_meta_boxes.no_customer_selected),!1;var t={user_id:o,action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};u(this).closest("div.edit_address").block({message:null,overlayCSS:{background:"#fff",opacity:.6}}),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:t,type:"POST",success:function(e){e&&e.billing&&u.each(e.shipping,function(e,o){u(":input#_shipping_"+e).val(o).change()}),u("div.edit_address").unblock()}})}return!1},copy_billing_to_shipping:function(){return window.confirm(woocommerce_admin_meta_boxes.copy_billing)&&u('.order_data_column :input[name^="_billing_"]').each(function(){var e=u(this).attr("name");e=e.replace("_billing_","_shipping_"),u(":input#"+e).val(u(this).val()).change()}),!1}},c={init:function(){this.stupidtable.init(),u("#woocommerce-order-items").on("click","button.add-line-item",this.add_line_item).on("click","button.add-coupon",this.add_coupon).on("click","a.remove-coupon",this.remove_coupon).on("click","button.refund-items",this.refund_items).on("click",".cancel-action",this.cancel).on("click","button.add-order-item",this.add_item).on("click","button.add-order-fee",this.add_fee).on("click","button.add-order-shipping",this.add_shipping).on("click","button.add-order-tax",this.add_tax).on("click","button.save-action",this.save_line_items).on("click","a.delete-order-tax",this.delete_tax).on("click","button.calculate-action",this.recalculate).on("click","a.edit-order-item",this.edit_item).on("click","a.delete-order-item",this.delete_item).on("click",".delete_refund",this.refunds.delete_refund).on("click","button.do-api-refund, button.do-manual-refund",this.refunds.do_refund).on("change",".refund input.refund_line_total, .refund input.refund_line_tax",this.refunds.input_changed).on("change keyup",".wc-order-refund-items #refund_amount",this.refunds.amount_changed).on("change","input.refund_order_item_qty",this.refunds.refund_quantity_changed).on("change","input.quantity",this.quantity_changed).on("keyup change",".split-input :input",function(){var e=u(this).parent().prev().find(":input");e&&(""===e.val()||e.is(".match-total"))&&e.val(u(this).val()).addClass("match-total")}).on("keyup",".split-input :input",function(){u(this).removeClass("match-total")}).on("click","button.add_order_item_meta",this.item_meta.add).on("click","button.remove_order_item_meta",this.item_meta.remove).on("wc_order_items_reload",this.reload_items).on("wc_order_items_reloaded",this.reloaded_items),u(document.body).on("wc_backbone_modal_loaded",this.backbone.init).on("wc_backbone_modal_response",this.backbone.response)},block:function(){u("#woocommerce-order-items").block({message:null,overlayCSS:{background:"#fff",opacity:.6}})},unblock:function(){u("#woocommerce-order-items").unblock()},reload_items:function(){var e={order_id:woocommerce_admin_meta_boxes.post_id,action:"woocommerce_load_order_items",security:woocommerce_admin_meta_boxes.order_item_nonce};c.block(),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e),c.reloaded_items(),c.unblock()}})},reloaded_items:function(){p.init_tiptip(),c.stupidtable.init()},quantity_changed:function(){var n=u(this).closest("tr.item"),r=u(this).val(),c=u(this).attr("data-qty"),e=u("input.line_total",n),o=u("input.line_subtotal",n),t=accounting.unformat(e.attr("data-total"),woocommerce_admin.mon_decimal_point)/c;e.val(parseFloat(accounting.formatNumber(t*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point));var a=accounting.unformat(o.attr("data-subtotal"),woocommerce_admin.mon_decimal_point)/c;o.val(parseFloat(accounting.formatNumber(a*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)),u("input.line_tax",n).each(function(){var e=u(this),o=e.data("tax_id"),t=accounting.unformat(e.attr("data-total_tax"),woocommerce_admin.mon_decimal_point)/c,a=u('input.line_subtotal_tax[data-tax_id="'+o+'"]',n),i=accounting.unformat(a.attr("data-subtotal_tax"),woocommerce_admin.mon_decimal_point)/c;0<t&&e.val(parseFloat(accounting.formatNumber(t*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)),0<i&&a.val(parseFloat(accounting.formatNumber(i*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point))}),u(this).trigger("quantity_changed")},add_line_item:function(){return u("div.wc-order-add-item").slideDown(),u("div.wc-order-data-row-toggle").not("div.wc-order-add-item").slideUp(),!1},add_coupon:function(){var e=window.prompt(woocommerce_admin_meta_boxes.i18n_apply_coupon);if(null!=e){c.block();var o=u("#customer_user").val(),t=u.extend({},c.get_taxable_address(),{action:"woocommerce_add_coupon_discount",dataType:"json",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,coupon:e,user_id:o});u.post(woocommerce_admin_meta_boxes.ajax_url,t,function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()})}return!1},remove_coupon:function(){var e=u(this);c.block();var o=u.extend({},c.get_taxable_address(),{action:"woocommerce_remove_order_coupon",dataType:"json",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,coupon:e.data("code")});u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()})},refund_items:function(){return u("div.wc-order-refund-items").slideDown(),u("div.wc-order-data-row-toggle").not("div.wc-order-refund-items").slideUp(),u("div.wc-order-totals-items").slideUp(),u("#woocommerce-order-items").find("div.refund").show(),u(".wc-order-edit-line-item .wc-order-edit-line-item-actions").hide(),!1},cancel:function(){return u("div.wc-order-data-row-toggle").not("div.wc-order-bulk-actions").slideUp(),u("div.wc-order-bulk-actions").slideDown(),u("div.wc-order-totals-items").slideDown(),u("#woocommerce-order-items").find("div.refund").hide(),u(".wc-order-edit-line-item .wc-order-edit-line-item-actions").show(),"true"===u(this).attr("data-reload")&&c.reload_items(),!1},add_item:function(){return u(this).WCBackboneModal({template:"wc-modal-add-products"}),!1},add_fee:function(){var e=window.prompt(woocommerce_admin_meta_boxes.i18n_add_fee);if(null!=e){c.block();var o=u.extend({},c.get_taxable_address(),{action:"woocommerce_add_order_fee",dataType:"json",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,amount:e});u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()})}return!1},add_shipping:function(){c.block();var e={action:"woocommerce_add_order_shipping",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,dataType:"json"};return u.post(woocommerce_admin_meta_boxes.ajax_url,e,function(e){e.success?u("table.woocommerce_order_items tbody#order_shipping_line_items").append(e.data.html):window.alert(e.data.error),c.unblock()}),!1},add_tax:function(){return u(this).WCBackboneModal({template:"wc-modal-add-tax"}),!1},edit_item:function(){return u(this).closest("tr").find(".view").hide(),u(this).closest("tr").find(".edit").show(),u(this).hide(),u("button.add-line-item").click(),u("button.cancel-action").attr("data-reload",!0),!1},delete_item:function(){if(window.confirm(woocommerce_admin_meta_boxes.remove_item_notice)){var e=u(this).closest("tr.item, tr.fee, tr.shipping").attr("data-order_item_id");c.block();var o=u.extend({},c.get_taxable_address(),{order_id:woocommerce_admin_meta_boxes.post_id,order_item_ids:e,action:"woocommerce_remove_order_item",security:woocommerce_admin_meta_boxes.order_item_nonce});"true"===u("button.cancel-action").attr("data-reload")&&(o.items=u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize()),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:o,type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),e.data.notes_html&&(u("ul.order_notes").empty(),u("ul.order_notes").append(u(e.data.notes_html).find("li"))),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()}})}return!1},delete_tax:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_tax)){c.block();var e={action:"woocommerce_remove_order_tax",rate_id:u(this).attr("data-rate_id"),order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()}})}return!1},get_taxable_address:function(){var e="",o="",t="",a="";return"shipping"===woocommerce_admin_meta_boxes.tax_based_on&&(e=u("#_shipping_country").val(),o=u("#_shipping_state").val(),t=u("#_shipping_postcode").val(),a=u("#_shipping_city").val()),"billing"!==woocommerce_admin_meta_boxes.tax_based_on&&e||(e=u("#_billing_country").val(),o=u("#_billing_state").val(),t=u("#_billing_postcode").val(),a=u("#_billing_city").val()),{country:e,state:o,postcode:t,city:a}},recalculate:function(){if(window.confirm(woocommerce_admin_meta_boxes.calc_totals)){c.block();var e=u.extend({},c.get_taxable_address(),{action:"woocommerce_calc_line_taxes",order_id:woocommerce_admin_meta_boxes.post_id,items:u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize(),security:woocommerce_admin_meta_boxes.calc_totals_nonce});u(document.body).trigger("order-totals-recalculate-before",e),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e),c.reloaded_items(),c.unblock(),u(document.body).trigger("order-totals-recalculate-success",e)},complete:function(e){u(document.body).trigger("order-totals-recalculate-complete",e)}})}return!1},save_line_items:function(){var e={order_id:woocommerce_admin_meta_boxes.post_id,items:u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize(),action:"woocommerce_save_order_items",security:woocommerce_admin_meta_boxes.order_item_nonce};return c.block(),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),e.data.notes_html&&(u("ul.order_notes").empty(),u("ul.order_notes").append(u(e.data.notes_html).find("li"))),c.reloaded_items(),c.unblock()):(c.unblock(),window.alert(e.data.error))}}),u(this).trigger("items_saved"),!1},refunds:{do_refund:function(){if(c.block(),window.confirm(woocommerce_admin_meta_boxes.i18n_do_refund)){var e=u("input#refund_amount").val(),o=u("input#refund_reason").val(),t=u("input#refunded_amount").val(),a={},i={},n={};u(".refund input.refund_order_item_qty").each(function(e,o){u(o).closest("tr").data("order_item_id")&&o.value&&(a[u(o).closest("tr").data("order_item_id")]=o.value)}),u(".refund input.refund_line_total").each(function(e,o){u(o).closest("tr").data("order_item_id")&&(i[u(o).closest("tr").data("order_item_id")]=accounting.unformat(o.value,woocommerce_admin.mon_decimal_point))}),u(".refund input.refund_line_tax").each(function(e,o){if(u(o).closest("tr").data("order_item_id")){var t=u(o).data("tax_id");n[u(o).closest("tr").data("order_item_id")]||(n[u(o).closest("tr").data("order_item_id")]={}),n[u(o).closest("tr").data("order_item_id")][t]=accounting.unformat(o.value,woocommerce_admin.mon_decimal_point)}});var r={action:"woocommerce_refund_line_items",order_id:woocommerce_admin_meta_boxes.post_id,refund_amount:e,refunded_amount:t,refund_reason:o,line_item_qtys:JSON.stringify(a,null,""),line_item_totals:JSON.stringify(i,null,""),line_item_tax_totals:JSON.stringify(n,null,""),api_refund:u(this).is(".do-api-refund"),restock_refunded_items:u("#restock_refunded_items:checked").length?"true":"false",security:woocommerce_admin_meta_boxes.order_item_nonce};u.post(woocommerce_admin_meta_boxes.ajax_url,r,function(e){!0===e.success?window.location.reload():(window.alert(e.data.error),c.reload_items(),c.unblock())})}else c.unblock()},delete_refund:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_refund)){var e=u(this).closest("tr.refund").attr("data-order_refund_id");c.block();var o={action:"woocommerce_delete_refund",refund_id:e,security:woocommerce_admin_meta_boxes.order_item_nonce};u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:o,type:"POST",success:function(){c.reload_items()}})}return!1},input_changed:function(){var t=0;u(".woocommerce_order_items").find("tr.item, tr.fee, tr.shipping").each(function(){u(this).find(".refund input:not(.refund_order_item_qty)").each(function(e,o){t+=parseFloat(accounting.unformat(u(o).val()||0,woocommerce_admin.mon_decimal_point))})}),u("#refund_amount").val(accounting.formatNumber(t,woocommerce_admin_meta_boxes.currency_format_num_decimals,"",woocommerce_admin.mon_decimal_point)).change()},amount_changed:function(){var e=accounting.unformat(u(this).val(),woocommerce_admin.mon_decimal_point);u("button .wc-order-refund-amount .amount").text(accounting.formatMoney(e,{symbol:woocommerce_admin_meta_boxes.currency_format_symbol,decimal:woocommerce_admin_meta_boxes.currency_format_decimal_sep,thousand:woocommerce_admin_meta_boxes.currency_format_thousand_sep,precision:woocommerce_admin_meta_boxes.currency_format_num_decimals,format:woocommerce_admin_meta_boxes.currency_format}))},refund_quantity_changed:function(){var i=u(this).closest("tr.item"),n=i.find("input.quantity").val(),r=u(this).val(),e=u("input.line_total",i),o=u("input.refund_line_total",i),t=accounting.unformat(e.attr("data-total"),woocommerce_admin.mon_decimal_point)/n;o.val(parseFloat(accounting.formatNumber(t*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)).change(),u(".refund_line_tax",i).each(function(){var e=u(this),o=e.data("tax_id"),t=u('input.line_tax[data-tax_id="'+o+'"]',i),a=accounting.unformat(t.data("total_tax"),woocommerce_admin.mon_decimal_point)/n;0<a?e.val(parseFloat(accounting.formatNumber(a*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)).change():e.val(0).change()}),0<r?u("#restock_refunded_items").closest("tr").show():(u("#restock_refunded_items").closest("tr").hide(),u(".woocommerce_order_items input.refund_order_item_qty").each(function(){0<u(this).val()&&u("#restock_refunded_items").closest("tr").show()})),u(this).trigger("refund_quantity_changed")}},item_meta:{add:function(){var e=u(this).closest("tr.item, tr.shipping"),o=e.find("tbody.meta_items"),t=o.find("tr").length+1,a='<tr data-meta_id="0"><td><input type="text" maxlength="255" placeholder="'+woocommerce_admin_meta_boxes_order.placeholder_name+'" name="meta_key['+e.attr("data-order_item_id")+"][new-"+t+']" /><textarea placeholder="'+woocommerce_admin_meta_boxes_order.placeholder_value+'" name="meta_value['+e.attr("data-order_item_id")+"][new-"+t+']"></textarea></td><td width="1%"><button class="remove_order_item_meta button">&times;</button></td></tr>';return o.append(a),!1},remove:function(){if(window.confirm(woocommerce_admin_meta_boxes.remove_item_meta)){var e=u(this).closest("tr");e.find(":input").val(""),e.hide()}return!1}},backbone:{init:function(e,o){"wc-modal-add-products"===o&&(u(document.body).trigger("wc-enhanced-select-init"),u(this).on("change",".wc-product-search",function(){if(u(this).closest("tr").is(":last-child")){var e=u(this).closest("table.widefat").find("tbody"),o=e.find("tr").length,t=e.data("row").replace(/\[0\]/g,"["+o+"]");e.append("<tr>"+t+"</tr>"),u(document.body).trigger("wc-enhanced-select-init")}}))},response:function(e,o,t){if("wc-modal-add-tax"===o){var a=t.add_order_tax,i="";t.manual_tax_rate_id&&(i=t.manual_tax_rate_id),c.backbone.add_tax(a,i)}if("wc-modal-add-products"===o){var n=u(this).find("table.widefat").find("tbody").find("tr"),r=[];return u(n).each(function(){var e=u(this).find(':input[name="item_id"]').val(),o=u(this).find(':input[name="item_qty"]').val();r.push({id:e,qty:o||1})}),c.backbone.add_items(r)}},add_items:function(e){c.block();var o={action:"woocommerce_add_order_item",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,data:e};"true"===u("button.cancel-action").attr("data-reload")&&(o.items=u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize()),u.ajax({type:"POST",url:woocommerce_admin_meta_boxes.ajax_url,data:o,success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),e.data.notes_html&&(u("ul.order_notes").empty(),u("ul.order_notes").append(u(e.data.notes_html).find("li"))),c.reloaded_items(),c.unblock()):(c.unblock(),window.alert(e.data.error))},dataType:"json"})},add_tax:function(e,o){if(o&&(e=o),!e)return!1;var t=u(".order-tax-id").map(function(){return u(this).val()}).get();if(-1===u.inArray(e,t)){c.block();var a={action:"woocommerce_add_order_tax",rate_id:e,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:a,dataType:"json",type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items()):window.alert(e.data.error),c.unblock()}})}else window.alert(woocommerce_admin_meta_boxes.i18n_tax_rate_already_exists)}},stupidtable:{init:function(){u(".woocommerce_order_items").stupidtable(),u(".woocommerce_order_items").on("aftertablesort",this.add_arrows)},add_arrows:function(e,o){var t=u(this).find("th"),a="asc"===o.direction?"&uarr;":"&darr;",i=o.column;t.find(".wc-arrow").remove(),t.eq(i).append('<span class="wc-arrow">'+a+"</span>")}}},e={init:function(){u("#woocommerce-order-notes").on("click","button.add_note",this.add_order_note).on("click","a.delete_note",this.delete_order_note)},add_order_note:function(){if(u("textarea#add_order_note").val()){u("#woocommerce-order-notes").block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var e={action:"woocommerce_add_order_note",post_id:woocommerce_admin_meta_boxes.post_id,note:u("textarea#add_order_note").val(),note_type:u("select#order_note_type").val(),security:woocommerce_admin_meta_boxes.add_order_note_nonce};return u.post(woocommerce_admin_meta_boxes.ajax_url,e,function(e){u("ul.order_notes").prepend(e),u("#woocommerce-order-notes").unblock(),u("#add_order_note").val("")}),!1}},delete_order_note:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_note)){var e=u(this).closest("li.note");u(e).block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var o={action:"woocommerce_delete_order_note",note_id:u(e).attr("rel"),security:woocommerce_admin_meta_boxes.delete_order_note_nonce};u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(){u(e).remove()})}return!1}},o={init:function(){u(".order_download_permissions").on("click","button.grant_access",this.grant_access).on("click","button.revoke_access",this.revoke_access).on("click","#copy-download-link",this.copy_link).on("aftercopy","#copy-download-link",this.copy_success).on("aftercopyfailure","#copy-download-link",this.copy_fail)},grant_access:function(){var e=u("#grant_access_id").val();if(e){u(".order_download_permissions").block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var o={action:"woocommerce_grant_access_to_download",product_ids:e,loop:u(".order_download_permissions .wc-metabox").length,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.grant_access_nonce};return u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(e){e?u(".order_download_permissions .wc-metaboxes").append(e):window.alert(woocommerce_admin_meta_boxes.i18n_download_permission_fail),u(document.body).trigger("wc-init-datepickers"),u("#grant_access_id").val("").change(),u(".order_download_permissions").unblock()}),!1}},revoke_access:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_permission_revoke)){var e=u(this).parent().parent(),o=u(this).attr("rel").split(",")[0],t=u(this).attr("rel").split(",")[1],a=u(this).data("permission_id");if(0<o){u(e).block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var i={action:"woocommerce_revoke_access_to_download",product_id:o,download_id:t,permission_id:a,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.revoke_access_nonce};u.post(woocommerce_admin_meta_boxes.ajax_url,i,function(){u(e).fadeOut("300",function(){u(e).remove()})})}else u(e).fadeOut("300",function(){u(e).remove()})}return!1},copy_link:function(e){wcClearClipboard(),wcSetClipboard(u(this).attr("href"),u(this)),e.preventDefault()},copy_success:function(){u(this).tipTip({attribute:"data-tip",activation:"focus",fadeIn:50,fadeOut:50,delay:0}).focus()},copy_fail:function(){u(this).tipTip({attribute:"data-tip-failed",activation:"focus",fadeIn:50,fadeOut:50,delay:0}).focus()}};p.init(),c.init(),e.init(),o.init()});
1
+ jQuery(function(u){var p={states:null,init:function(){"undefined"!=typeof woocommerce_admin_meta_boxes_order&&"undefined"!=typeof woocommerce_admin_meta_boxes_order.countries&&(this.states=u.parseJSON(woocommerce_admin_meta_boxes_order.countries.replace(/&quot;/g,'"'))),u(".js_field-country").selectWoo().change(this.change_country),u(".js_field-country").trigger("change",[!0]),u(document.body).on("change","select.js_field-state",this.change_state),u("#woocommerce-order-actions input, #woocommerce-order-actions a").click(function(){window.onbeforeunload=""}),u("a.edit_address").click(this.edit_address),u("a.billing-same-as-shipping").on("click",this.copy_billing_to_shipping),u("a.load_customer_billing").on("click",this.load_billing),u("a.load_customer_shipping").on("click",this.load_shipping),u("#customer_user").on("change",this.change_customer_user)},change_country:function(e,o){if(void 0===o&&(o=!1),null!==p.states){var t,a=u(this),i=a.val(),n=a.parents("div.edit_address").find(":input.js_field-state"),r=n.parent(),c=n.attr("name"),d=n.attr("id"),m=a.data("woocommerce.stickState-"+i)?a.data("woocommerce.stickState-"+i):n.val(),_=n.attr("placeholder");if(o&&a.data("woocommerce.stickState-"+i,m),r.show().find(".select2-container").remove(),u.isEmptyObject(p.states[i]))t=u('<input type="text" />').prop("id",d).prop("name",c).prop("placeholder",_).addClass("js_field-state").val(""),n.replaceWith(t);else{var s=p.states[i],l=u('<option value=""></option>').text(woocommerce_admin_meta_boxes_order.i18n_select_state_text);t=u("<select></select>").prop("id",d).prop("name",c).prop("placeholder",_).addClass("js_field-state select short").append(l),u.each(s,function(e){var o=u("<option></option>").prop("value",e).text(s[e]);t.append(o)}),t.val(m),n.replaceWith(t),t.show().selectWoo().hide().change()}u(document.body).trigger("contry-change.woocommerce",[i,u(this).closest("div")]),u(document.body).trigger("country-change.woocommerce",[i,u(this).closest("div")])}},change_state:function(){var e=u(this),o=e.val(),t=e.parents("div.edit_address").find(":input.js_field-country"),a=t.val();t.data("woocommerce.stickState-"+a,o)},init_tiptip:function(){u("#tiptip_holder").removeAttr("style"),u("#tiptip_arrow").removeAttr("style"),u(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200})},edit_address:function(e){e.preventDefault();var o=u(this),t=o.closest(".order_data_column"),a=t.find("div.edit_address"),i=t.find("div.address"),n=a.find(".js_field-country"),r=a.find(".js_field-state");i.hide(),o.parent().find("a").toggle(),n.val()||(n.val(woocommerce_admin_meta_boxes_order.default_country).change(),r.val(woocommerce_admin_meta_boxes_order.default_state).change()),a.show()},change_customer_user:function(){u("#_billing_country").val()||(u("a.edit_address").click(),p.load_billing(!0),p.load_shipping(!0))},load_billing:function(e){if(!0===e||window.confirm(woocommerce_admin_meta_boxes.load_billing)){var o=u("#customer_user").val();if(!o)return window.alert(woocommerce_admin_meta_boxes.no_customer_selected),!1;var t={user_id:o,action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};u(this).closest("div.edit_address").block({message:null,overlayCSS:{background:"#fff",opacity:.6}}),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:t,type:"POST",success:function(e){e&&e.billing&&u.each(e.billing,function(e,o){u(":input#_billing_"+e).val(o).change()}),u("div.edit_address").unblock()}})}return!1},load_shipping:function(e){if(!0===e||window.confirm(woocommerce_admin_meta_boxes.load_shipping)){var o=u("#customer_user").val();if(!o)return window.alert(woocommerce_admin_meta_boxes.no_customer_selected),!1;var t={user_id:o,action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};u(this).closest("div.edit_address").block({message:null,overlayCSS:{background:"#fff",opacity:.6}}),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:t,type:"POST",success:function(e){e&&e.billing&&u.each(e.shipping,function(e,o){u(":input#_shipping_"+e).val(o).change()}),u("div.edit_address").unblock()}})}return!1},copy_billing_to_shipping:function(){return window.confirm(woocommerce_admin_meta_boxes.copy_billing)&&u('.order_data_column :input[name^="_billing_"]').each(function(){var e=u(this).attr("name");e=e.replace("_billing_","_shipping_"),u(":input#"+e).val(u(this).val()).change()}),!1}},c={init:function(){this.stupidtable.init(),u("#woocommerce-order-items").on("click","button.add-line-item",this.add_line_item).on("click","button.add-coupon",this.add_coupon).on("click","a.remove-coupon",this.remove_coupon).on("click","button.refund-items",this.refund_items).on("click",".cancel-action",this.cancel).on("click","button.add-order-item",this.add_item).on("click","button.add-order-fee",this.add_fee).on("click","button.add-order-shipping",this.add_shipping).on("click","button.add-order-tax",this.add_tax).on("click","button.save-action",this.save_line_items).on("click","a.delete-order-tax",this.delete_tax).on("click","button.calculate-action",this.recalculate).on("click","a.edit-order-item",this.edit_item).on("click","a.delete-order-item",this.delete_item).on("click",".delete_refund",this.refunds.delete_refund).on("click","button.do-api-refund, button.do-manual-refund",this.refunds.do_refund).on("change",".refund input.refund_line_total, .refund input.refund_line_tax",this.refunds.input_changed).on("change keyup",".wc-order-refund-items #refund_amount",this.refunds.amount_changed).on("change","input.refund_order_item_qty",this.refunds.refund_quantity_changed).on("change","input.quantity",this.quantity_changed).on("keyup change",".split-input :input",function(){var e=u(this).parent().prev().find(":input");e&&(""===e.val()||e.is(".match-total"))&&e.val(u(this).val()).addClass("match-total")}).on("keyup",".split-input :input",function(){u(this).removeClass("match-total")}).on("click","button.add_order_item_meta",this.item_meta.add).on("click","button.remove_order_item_meta",this.item_meta.remove).on("wc_order_items_reload",this.reload_items).on("wc_order_items_reloaded",this.reloaded_items),u(document.body).on("wc_backbone_modal_loaded",this.backbone.init).on("wc_backbone_modal_response",this.backbone.response)},block:function(){u("#woocommerce-order-items").block({message:null,overlayCSS:{background:"#fff",opacity:.6}})},unblock:function(){u("#woocommerce-order-items").unblock()},reload_items:function(){var e={order_id:woocommerce_admin_meta_boxes.post_id,action:"woocommerce_load_order_items",security:woocommerce_admin_meta_boxes.order_item_nonce};c.block(),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e),c.reloaded_items(),c.unblock()}})},reloaded_items:function(){p.init_tiptip(),c.stupidtable.init()},quantity_changed:function(){var n=u(this).closest("tr.item"),r=u(this).val(),c=u(this).attr("data-qty"),e=u("input.line_total",n),o=u("input.line_subtotal",n),t=accounting.unformat(e.attr("data-total"),woocommerce_admin.mon_decimal_point)/c;e.val(parseFloat(accounting.formatNumber(t*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point));var a=accounting.unformat(o.attr("data-subtotal"),woocommerce_admin.mon_decimal_point)/c;o.val(parseFloat(accounting.formatNumber(a*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)),u("input.line_tax",n).each(function(){var e=u(this),o=e.data("tax_id"),t=accounting.unformat(e.attr("data-total_tax"),woocommerce_admin.mon_decimal_point)/c,a=u('input.line_subtotal_tax[data-tax_id="'+o+'"]',n),i=accounting.unformat(a.attr("data-subtotal_tax"),woocommerce_admin.mon_decimal_point)/c;0<t&&e.val(parseFloat(accounting.formatNumber(t*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)),0<i&&a.val(parseFloat(accounting.formatNumber(i*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point))}),u(this).trigger("quantity_changed")},add_line_item:function(){return u("div.wc-order-add-item").slideDown(),u("div.wc-order-data-row-toggle").not("div.wc-order-add-item").slideUp(),!1},add_coupon:function(){var e=window.prompt(woocommerce_admin_meta_boxes.i18n_apply_coupon);if(null!=e){c.block();var o=u("#customer_user").val(),t=u.extend({},c.get_taxable_address(),{action:"woocommerce_add_coupon_discount",dataType:"json",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,coupon:e,user_id:o});u.post(woocommerce_admin_meta_boxes.ajax_url,t,function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()})}return!1},remove_coupon:function(){var e=u(this);c.block();var o=u.extend({},c.get_taxable_address(),{action:"woocommerce_remove_order_coupon",dataType:"json",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,coupon:e.data("code")});u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()})},refund_items:function(){return u("div.wc-order-refund-items").slideDown(),u("div.wc-order-data-row-toggle").not("div.wc-order-refund-items").slideUp(),u("div.wc-order-totals-items").slideUp(),u("#woocommerce-order-items").find("div.refund").show(),u(".wc-order-edit-line-item .wc-order-edit-line-item-actions").hide(),!1},cancel:function(){return u("div.wc-order-data-row-toggle").not("div.wc-order-bulk-actions").slideUp(),u("div.wc-order-bulk-actions").slideDown(),u("div.wc-order-totals-items").slideDown(),u("#woocommerce-order-items").find("div.refund").hide(),u(".wc-order-edit-line-item .wc-order-edit-line-item-actions").show(),"true"===u(this).attr("data-reload")&&c.reload_items(),!1},add_item:function(){return u(this).WCBackboneModal({template:"wc-modal-add-products"}),!1},add_fee:function(){var e=window.prompt(woocommerce_admin_meta_boxes.i18n_add_fee);if(null!=e){c.block();var o=u.extend({},c.get_taxable_address(),{action:"woocommerce_add_order_fee",dataType:"json",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,amount:e});u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()})}return!1},add_shipping:function(){c.block();var e={action:"woocommerce_add_order_shipping",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,dataType:"json"};return u.post(woocommerce_admin_meta_boxes.ajax_url,e,function(e){e.success?u("table.woocommerce_order_items tbody#order_shipping_line_items").append(e.data.html):window.alert(e.data.error),c.unblock()}),!1},add_tax:function(){return u(this).WCBackboneModal({template:"wc-modal-add-tax"}),!1},edit_item:function(){return u(this).closest("tr").find(".view").hide(),u(this).closest("tr").find(".edit").show(),u(this).hide(),u("button.add-line-item").click(),u("button.cancel-action").attr("data-reload",!0),!1},delete_item:function(){if(window.confirm(woocommerce_admin_meta_boxes.remove_item_notice)){var e=u(this).closest("tr.item, tr.fee, tr.shipping").attr("data-order_item_id");c.block();var o=u.extend({},c.get_taxable_address(),{order_id:woocommerce_admin_meta_boxes.post_id,order_item_ids:e,action:"woocommerce_remove_order_item",security:woocommerce_admin_meta_boxes.order_item_nonce});"true"===u("button.cancel-action").attr("data-reload")&&(o.items=u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize()),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:o,type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),e.data.notes_html&&(u("ul.order_notes").empty(),u("ul.order_notes").append(u(e.data.notes_html).find("li"))),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()}})}return!1},delete_tax:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_tax)){c.block();var e={action:"woocommerce_remove_order_tax",rate_id:u(this).attr("data-rate_id"),order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items(),c.unblock()):window.alert(e.data.error),c.unblock()}})}return!1},get_taxable_address:function(){var e="",o="",t="",a="";return"shipping"===woocommerce_admin_meta_boxes.tax_based_on&&(e=u("#_shipping_country").val(),o=u("#_shipping_state").val(),t=u("#_shipping_postcode").val(),a=u("#_shipping_city").val()),"billing"!==woocommerce_admin_meta_boxes.tax_based_on&&e||(e=u("#_billing_country").val(),o=u("#_billing_state").val(),t=u("#_billing_postcode").val(),a=u("#_billing_city").val()),{country:e,state:o,postcode:t,city:a}},recalculate:function(){if(window.confirm(woocommerce_admin_meta_boxes.calc_totals)){c.block();var e=u.extend({},c.get_taxable_address(),{action:"woocommerce_calc_line_taxes",order_id:woocommerce_admin_meta_boxes.post_id,items:u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize(),security:woocommerce_admin_meta_boxes.calc_totals_nonce});u(document.body).trigger("order-totals-recalculate-before",e),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e),c.reloaded_items(),c.unblock(),u(document.body).trigger("order-totals-recalculate-success",e)},complete:function(e){u(document.body).trigger("order-totals-recalculate-complete",e)}})}return!1},save_line_items:function(){var e={order_id:woocommerce_admin_meta_boxes.post_id,items:u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize(),action:"woocommerce_save_order_items",security:woocommerce_admin_meta_boxes.order_item_nonce};return c.block(),u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),e.data.notes_html&&(u("ul.order_notes").empty(),u("ul.order_notes").append(u(e.data.notes_html).find("li"))),c.reloaded_items(),c.unblock()):(c.unblock(),window.alert(e.data.error))}}),u(this).trigger("items_saved"),!1},refunds:{do_refund:function(){if(c.block(),window.confirm(woocommerce_admin_meta_boxes.i18n_do_refund)){var e=u("input#refund_amount").val(),o=u("input#refund_reason").val(),t=u("input#refunded_amount").val(),a={},i={},n={};u(".refund input.refund_order_item_qty").each(function(e,o){u(o).closest("tr").data("order_item_id")&&o.value&&(a[u(o).closest("tr").data("order_item_id")]=o.value)}),u(".refund input.refund_line_total").each(function(e,o){u(o).closest("tr").data("order_item_id")&&(i[u(o).closest("tr").data("order_item_id")]=accounting.unformat(o.value,woocommerce_admin.mon_decimal_point))}),u(".refund input.refund_line_tax").each(function(e,o){if(u(o).closest("tr").data("order_item_id")){var t=u(o).data("tax_id");n[u(o).closest("tr").data("order_item_id")]||(n[u(o).closest("tr").data("order_item_id")]={}),n[u(o).closest("tr").data("order_item_id")][t]=accounting.unformat(o.value,woocommerce_admin.mon_decimal_point)}});var r={action:"woocommerce_refund_line_items",order_id:woocommerce_admin_meta_boxes.post_id,refund_amount:e,refunded_amount:t,refund_reason:o,line_item_qtys:JSON.stringify(a,null,""),line_item_totals:JSON.stringify(i,null,""),line_item_tax_totals:JSON.stringify(n,null,""),api_refund:u(this).is(".do-api-refund"),restock_refunded_items:u("#restock_refunded_items:checked").length?"true":"false",security:woocommerce_admin_meta_boxes.order_item_nonce};u.post(woocommerce_admin_meta_boxes.ajax_url,r,function(e){!0===e.success?window.location.reload():(window.alert(e.data.error),c.reload_items(),c.unblock())})}else c.unblock()},delete_refund:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_refund)){var e=u(this).closest("tr.refund").attr("data-order_refund_id");c.block();var o={action:"woocommerce_delete_refund",refund_id:e,security:woocommerce_admin_meta_boxes.order_item_nonce};u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:o,type:"POST",success:function(){c.reload_items()}})}return!1},input_changed:function(){var t=0;u(".woocommerce_order_items").find("tr.item, tr.fee, tr.shipping").each(function(){u(this).find(".refund input:not(.refund_order_item_qty)").each(function(e,o){t+=parseFloat(accounting.unformat(u(o).val()||0,woocommerce_admin.mon_decimal_point))})}),u("#refund_amount").val(accounting.formatNumber(t,woocommerce_admin_meta_boxes.currency_format_num_decimals,"",woocommerce_admin.mon_decimal_point)).change()},amount_changed:function(){var e=accounting.unformat(u(this).val(),woocommerce_admin.mon_decimal_point);u("button .wc-order-refund-amount .amount").text(accounting.formatMoney(e,{symbol:woocommerce_admin_meta_boxes.currency_format_symbol,decimal:woocommerce_admin_meta_boxes.currency_format_decimal_sep,thousand:woocommerce_admin_meta_boxes.currency_format_thousand_sep,precision:woocommerce_admin_meta_boxes.currency_format_num_decimals,format:woocommerce_admin_meta_boxes.currency_format}))},refund_quantity_changed:function(){var i=u(this).closest("tr.item"),n=i.find("input.quantity").val(),r=u(this).val(),e=u("input.line_total",i),o=u("input.refund_line_total",i),t=accounting.unformat(e.attr("data-total"),woocommerce_admin.mon_decimal_point)/n;o.val(parseFloat(accounting.formatNumber(t*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)).change(),u(".refund_line_tax",i).each(function(){var e=u(this),o=e.data("tax_id"),t=u('input.line_tax[data-tax_id="'+o+'"]',i),a=accounting.unformat(t.data("total_tax"),woocommerce_admin.mon_decimal_point)/n;0<a?e.val(parseFloat(accounting.formatNumber(a*r,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)).change():e.val(0).change()}),0<r?u("#restock_refunded_items").closest("tr").show():(u("#restock_refunded_items").closest("tr").hide(),u(".woocommerce_order_items input.refund_order_item_qty").each(function(){0<u(this).val()&&u("#restock_refunded_items").closest("tr").show()})),u(this).trigger("refund_quantity_changed")}},item_meta:{add:function(){var e=u(this).closest("tr.item, tr.shipping"),o=e.find("tbody.meta_items"),t=o.find("tr").length+1,a='<tr data-meta_id="0"><td><input type="text" maxlength="255" placeholder="'+woocommerce_admin_meta_boxes_order.placeholder_name+'" name="meta_key['+e.attr("data-order_item_id")+"][new-"+t+']" /><textarea placeholder="'+woocommerce_admin_meta_boxes_order.placeholder_value+'" name="meta_value['+e.attr("data-order_item_id")+"][new-"+t+']"></textarea></td><td width="1%"><button class="remove_order_item_meta button">&times;</button></td></tr>';return o.append(a),!1},remove:function(){if(window.confirm(woocommerce_admin_meta_boxes.remove_item_meta)){var e=u(this).closest("tr");e.find(":input").val(""),e.hide()}return!1}},backbone:{init:function(e,o){"wc-modal-add-products"===o&&(u(document.body).trigger("wc-enhanced-select-init"),u(this).on("change",".wc-product-search",function(){if(u(this).closest("tr").is(":last-child")){var e=u(this).closest("table.widefat").find("tbody"),o=e.find("tr").length,t=e.data("row").replace(/\[0\]/g,"["+o+"]");e.append("<tr>"+t+"</tr>"),u(document.body).trigger("wc-enhanced-select-init")}}))},response:function(e,o,t){if("wc-modal-add-tax"===o){var a=t.add_order_tax,i="";t.manual_tax_rate_id&&(i=t.manual_tax_rate_id),c.backbone.add_tax(a,i)}if("wc-modal-add-products"===o){var n=u(this).find("table.widefat").find("tbody").find("tr"),r=[];return u(n).each(function(){var e=u(this).find(':input[name="item_id"]').val(),o=u(this).find(':input[name="item_qty"]').val();r.push({id:e,qty:o||1})}),c.backbone.add_items(r)}},add_items:function(e){c.block();var o={action:"woocommerce_add_order_item",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce,data:e};"true"===u("button.cancel-action").attr("data-reload")&&(o.items=u("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize()),u.ajax({type:"POST",url:woocommerce_admin_meta_boxes.ajax_url,data:o,success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),e.data.notes_html&&(u("ul.order_notes").empty(),u("ul.order_notes").append(u(e.data.notes_html).find("li"))),c.reloaded_items(),c.unblock()):(c.unblock(),window.alert(e.data.error))},dataType:"json"})},add_tax:function(e,o){if(o&&(e=o),!e)return!1;var t=u(".order-tax-id").map(function(){return u(this).val()}).get();if(-1===u.inArray(e,t)){c.block();var a={action:"woocommerce_add_order_tax",rate_id:e,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};u.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:a,dataType:"json",type:"POST",success:function(e){e.success?(u("#woocommerce-order-items").find(".inside").empty(),u("#woocommerce-order-items").find(".inside").append(e.data.html),c.reloaded_items()):window.alert(e.data.error),c.unblock()}})}else window.alert(woocommerce_admin_meta_boxes.i18n_tax_rate_already_exists)}},stupidtable:{init:function(){u(".woocommerce_order_items").stupidtable(),u(".woocommerce_order_items").on("aftertablesort",this.add_arrows)},add_arrows:function(e,o){var t=u(this).find("th"),a="asc"===o.direction?"&uarr;":"&darr;",i=o.column;t.find(".wc-arrow").remove(),t.eq(i).append('<span class="wc-arrow">'+a+"</span>")}}},e={init:function(){u("#woocommerce-order-notes").on("click","button.add_note",this.add_order_note).on("click","a.delete_note",this.delete_order_note)},add_order_note:function(){if(u("textarea#add_order_note").val()){u("#woocommerce-order-notes").block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var e={action:"woocommerce_add_order_note",post_id:woocommerce_admin_meta_boxes.post_id,note:u("textarea#add_order_note").val(),note_type:u("select#order_note_type").val(),security:woocommerce_admin_meta_boxes.add_order_note_nonce};return u.post(woocommerce_admin_meta_boxes.ajax_url,e,function(e){u("ul.order_notes").prepend(e),u("#woocommerce-order-notes").unblock(),u("#add_order_note").val("")}),!1}},delete_order_note:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_note)){var e=u(this).closest("li.note");u(e).block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var o={action:"woocommerce_delete_order_note",note_id:u(e).attr("rel"),security:woocommerce_admin_meta_boxes.delete_order_note_nonce};u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(){u(e).remove()})}return!1}},o={init:function(){u(".order_download_permissions").on("click","button.grant_access",this.grant_access).on("click","button.revoke_access",this.revoke_access).on("click","#copy-download-link",this.copy_link).on("aftercopy","#copy-download-link",this.copy_success).on("aftercopyfailure","#copy-download-link",this.copy_fail)},grant_access:function(){var e=u("#grant_access_id").val();if(e){u(".order_download_permissions").block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var o={action:"woocommerce_grant_access_to_download",product_ids:e,loop:u(".order_download_permissions .wc-metabox").length,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.grant_access_nonce};return u.post(woocommerce_admin_meta_boxes.ajax_url,o,function(e){e?u(".order_download_permissions .wc-metaboxes").append(e):window.alert(woocommerce_admin_meta_boxes.i18n_download_permission_fail),u(document.body).trigger("wc-init-datepickers"),u("#grant_access_id").val("").change(),u(".order_download_permissions").unblock()}),!1}},revoke_access:function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_permission_revoke)){var e=u(this).parent().parent(),o=u(this).attr("rel").split(",")[0],t=u(this).attr("rel").split(",")[1],a=u(this).data("permission_id");if(0<o){u(e).block({message:null,overlayCSS:{background:"#fff",opacity:.6}});var i={action:"woocommerce_revoke_access_to_download",product_id:o,download_id:t,permission_id:a,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.revoke_access_nonce};u.post(woocommerce_admin_meta_boxes.ajax_url,i,function(){u(e).fadeOut("300",function(){u(e).remove()})})}else u(e).fadeOut("300",function(){u(e).remove()})}return!1},copy_link:function(e){wcClearClipboard(),wcSetClipboard(u(this).attr("href"),u(this)),e.preventDefault()},copy_success:function(){u(this).tipTip({attribute:"data-tip",activation:"focus",fadeIn:50,fadeOut:50,delay:0}).focus()},copy_fail:function(){u(this).tipTip({attribute:"data-tip-failed",activation:"focus",fadeIn:50,fadeOut:50,delay:0}).focus()}};p.init(),c.init(),e.init(),o.init()});
assets/js/admin/meta-boxes-product-variation.js CHANGED
@@ -118,11 +118,12 @@ jQuery( function( $ ) {
118
  // Init TipTip
119
  $( '#tiptip_holder' ).removeAttr( 'style' );
120
  $( '#tiptip_arrow' ).removeAttr( 'style' );
121
- $( '.woocommerce_variations .tips, .woocommerce_variations .help_tip, .woocommerce_variations .woocommerce-help-tip', wrapper ).tipTip({
122
- 'attribute': 'data-tip',
123
- 'fadeIn': 50,
124
- 'fadeOut': 50,
125
- 'delay': 200
 
126
  });
127
 
128
  // Datepicker fields
@@ -195,7 +196,10 @@ jQuery( function( $ ) {
195
  offset = parseInt( ( current_page - 1 ) * woocommerce_admin_meta_boxes_variations.variations_per_page, 10 );
196
 
197
  $( '.woocommerce_variations .woocommerce_variation' ).each( function ( index, el ) {
198
- $( '.variation_menu_order', el ).val( parseInt( $( el ).index( '.woocommerce_variations .woocommerce_variation' ), 10 ) + 1 + offset ).change();
 
 
 
199
  });
200
  }
201
  };
@@ -259,14 +263,16 @@ jQuery( function( $ ) {
259
  if ( $button.is( '.remove' ) ) {
260
 
261
  $( '.upload_image_id', wc_meta_boxes_product_variations_media.setting_variation_image ).val( '' ).change();
262
- wc_meta_boxes_product_variations_media.setting_variation_image.find( 'img' ).eq( 0 ).attr( 'src', woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src );
 
263
  wc_meta_boxes_product_variations_media.setting_variation_image.find( '.upload_image_button' ).removeClass( 'remove' );
264
 
265
  } else {
266
 
267
  // If the media frame already exists, reopen it.
268
  if ( wc_meta_boxes_product_variations_media.variable_image_frame ) {
269
- wc_meta_boxes_product_variations_media.variable_image_frame.uploader.uploader.param( 'post_id', wc_meta_boxes_product_variations_media.setting_variation_image_id );
 
270
  wc_meta_boxes_product_variations_media.variable_image_frame.open();
271
  return;
272
  } else {
@@ -291,7 +297,8 @@ jQuery( function( $ ) {
291
  // When an image is selected, run a callback.
292
  wc_meta_boxes_product_variations_media.variable_image_frame.on( 'select', function () {
293
 
294
- var attachment = wc_meta_boxes_product_variations_media.variable_image_frame.state().get( 'selection' ).first().toJSON(),
 
295
  url = attachment.sizes && attachment.sizes.thumbnail ? attachment.sizes.thumbnail.url : attachment.url;
296
 
297
  $( '.upload_image_id', wc_meta_boxes_product_variations_media.setting_variation_image ).val( attachment.id ).change();
@@ -328,7 +335,8 @@ jQuery( function( $ ) {
328
  $( '#variable_product_options' )
329
  .on( 'click', 'button.save-variation-changes', this.save_variations )
330
  .on( 'click', 'button.cancel-variation-changes', this.cancel_variations )
331
- .on( 'click', '.remove_variation', this.remove_variation );
 
332
 
333
  $( document.body )
334
  .on( 'change', '#variable_product_options .woocommerce_variations :input', this.input_changed )
@@ -553,7 +561,8 @@ jQuery( function( $ ) {
553
  cancel_variations: function() {
554
  var current = parseInt( $( '#variable_product_options' ).find( '.woocommerce_variations' ).attr( 'data-page' ), 10 );
555
 
556
- $( '#variable_product_options' ).find( '.woocommerce_variations .variation-needs-update' ).removeClass( 'variation-needs-update' );
 
557
  $( '.variations-defaults select' ).each( function() {
558
  $( this ).val( $( this ).attr( 'data-current' ) );
559
  });
@@ -617,7 +626,9 @@ jQuery( function( $ ) {
617
  $.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function() {
618
  var wrapper = $( '#variable_product_options' ).find( '.woocommerce_variations' ),
619
  current_page = parseInt( wrapper.attr( 'data-page' ), 10 ),
620
- total_pages = Math.ceil( ( parseInt( wrapper.attr( 'data-total' ), 10 ) - 1 ) / woocommerce_admin_meta_boxes_variations.variations_per_page ),
 
 
621
  page = 1;
622
 
623
  $( '#woocommerce-product-data' ).trigger( 'woocommerce_variations_removed' );
@@ -726,7 +737,8 @@ jQuery( function( $ ) {
726
  if ( window.confirm( woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations ) ) {
727
  if ( window.confirm( woocommerce_admin_meta_boxes_variations.i18n_last_warning ) ) {
728
  data.allowed = true;
729
- changes = parseInt( $( '#variable_product_options' ).find( '.woocommerce_variations' ).attr( 'data-total' ), 10 ) * -1;
 
730
  }
731
  }
732
  break;
118
  // Init TipTip
119
  $( '#tiptip_holder' ).removeAttr( 'style' );
120
  $( '#tiptip_arrow' ).removeAttr( 'style' );
121
+ $( '.woocommerce_variations .tips, .woocommerce_variations .help_tip, .woocommerce_variations .woocommerce-help-tip', wrapper )
122
+ .tipTip({
123
+ 'attribute': 'data-tip',
124
+ 'fadeIn': 50,
125
+ 'fadeOut': 50,
126
+ 'delay': 200
127
  });
128
 
129
  // Datepicker fields
196
  offset = parseInt( ( current_page - 1 ) * woocommerce_admin_meta_boxes_variations.variations_per_page, 10 );
197
 
198
  $( '.woocommerce_variations .woocommerce_variation' ).each( function ( index, el ) {
199
+ $( '.variation_menu_order', el )
200
+ .val( parseInt( $( el )
201
+ .index( '.woocommerce_variations .woocommerce_variation' ), 10 ) + 1 + offset )
202
+ .change();
203
  });
204
  }
205
  };
263
  if ( $button.is( '.remove' ) ) {
264
 
265
  $( '.upload_image_id', wc_meta_boxes_product_variations_media.setting_variation_image ).val( '' ).change();
266
+ wc_meta_boxes_product_variations_media.setting_variation_image.find( 'img' ).eq( 0 )
267
+ .attr( 'src', woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src );
268
  wc_meta_boxes_product_variations_media.setting_variation_image.find( '.upload_image_button' ).removeClass( 'remove' );
269
 
270
  } else {
271
 
272
  // If the media frame already exists, reopen it.
273
  if ( wc_meta_boxes_product_variations_media.variable_image_frame ) {
274
+ wc_meta_boxes_product_variations_media.variable_image_frame.uploader.uploader
275
+ .param( 'post_id', wc_meta_boxes_product_variations_media.setting_variation_image_id );
276
  wc_meta_boxes_product_variations_media.variable_image_frame.open();
277
  return;
278
  } else {
297
  // When an image is selected, run a callback.
298
  wc_meta_boxes_product_variations_media.variable_image_frame.on( 'select', function () {
299
 
300
+ var attachment = wc_meta_boxes_product_variations_media.variable_image_frame.state()
301
+ .get( 'selection' ).first().toJSON(),
302
  url = attachment.sizes && attachment.sizes.thumbnail ? attachment.sizes.thumbnail.url : attachment.url;
303
 
304
  $( '.upload_image_id', wc_meta_boxes_product_variations_media.setting_variation_image ).val( attachment.id ).change();
335
  $( '#variable_product_options' )
336
  .on( 'click', 'button.save-variation-changes', this.save_variations )
337
  .on( 'click', 'button.cancel-variation-changes', this.cancel_variations )
338
+ .on( 'click', '.remove_variation', this.remove_variation )
339
+ .on( 'click','.downloadable_files a.delete', this.input_changed );
340
 
341
  $( document.body )
342
  .on( 'change', '#variable_product_options .woocommerce_variations :input', this.input_changed )
561
  cancel_variations: function() {
562
  var current = parseInt( $( '#variable_product_options' ).find( '.woocommerce_variations' ).attr( 'data-page' ), 10 );
563
 
564
+ $( '#variable_product_options' ).find( '.woocommerce_variations .variation-needs-update' )
565
+ .removeClass( 'variation-needs-update' );
566
  $( '.variations-defaults select' ).each( function() {
567
  $( this ).val( $( this ).attr( 'data-current' ) );
568
  });
626
  $.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function() {
627
  var wrapper = $( '#variable_product_options' ).find( '.woocommerce_variations' ),
628
  current_page = parseInt( wrapper.attr( 'data-page' ), 10 ),
629
+ total_pages = Math.ceil( (
630
+ parseInt( wrapper.attr( 'data-total' ), 10 ) - 1
631
+ ) / woocommerce_admin_meta_boxes_variations.variations_per_page ),
632
  page = 1;
633
 
634
  $( '#woocommerce-product-data' ).trigger( 'woocommerce_variations_removed' );
737
  if ( window.confirm( woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations ) ) {
738
  if ( window.confirm( woocommerce_admin_meta_boxes_variations.i18n_last_warning ) ) {
739
  data.allowed = true;
740
+ changes = parseInt( $( '#variable_product_options' ).find( '.woocommerce_variations' )
741
+ .attr( 'data-total' ), 10 ) * -1;
742
  }
743
  }
744
  break;
assets/js/admin/meta-boxes-product-variation.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(d){"use strict";var o={init:function(){d("#variable_product_options").on("change","input.variable_is_downloadable",this.variable_is_downloadable).on("change","input.variable_is_virtual",this.variable_is_virtual).on("change","input.variable_manage_stock",this.variable_manage_stock).on("click","button.notice-dismiss",this.notice_dismiss).on("click","h3 .sort",this.set_menu_order).on("reload",this.reload),d("input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock").change(),d("#woocommerce-product-data").on("woocommerce_variations_loaded",this.variations_loaded),d(document.body).on("woocommerce_variations_added",this.variation_added)},reload:function(){n.load_variations(1),m.set_paginav(0)},variable_is_downloadable:function(){d(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").hide(),d(this).is(":checked")&&d(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").show()},variable_is_virtual:function(){d(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").show(),d(this).is(":checked")&&d(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").hide()},variable_manage_stock:function(){d(this).closest(".woocommerce_variation").find(".show_if_variation_manage_stock").hide(),d(this).closest(".woocommerce_variation").find(".variable_stock_status").show(),d(this).is(":checked")&&(d(this).closest(".woocommerce_variation").find(".show_if_variation_manage_stock").show(),d(this).closest(".woocommerce_variation").find(".variable_stock_status").hide()),d("input#_manage_stock:checked").length&&d(this).closest(".woocommerce_variation").find(".variable_stock_status").hide()},notice_dismiss:function(){d(this).closest("div.notice").remove()},variations_loaded:function(a,e){e=e||!1;var i=d("#woocommerce-product-data");e||(d("input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock",i).change(),d(".woocommerce_variation",i).each(function(a,e){var i=d(e),o=d(".sale_price_dates_from",i).val(),t=d(".sale_price_dates_to",i).val();""===o&&""===t||d("a.sale_schedule",i).click()}),d(".woocommerce_variations .variation-needs-update",i).removeClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes",i).attr("disabled","disabled")),d("#tiptip_holder").removeAttr("style"),d("#tiptip_arrow").removeAttr("style"),d(".woocommerce_variations .tips, .woocommerce_variations .help_tip, .woocommerce_variations .woocommerce-help-tip",i).tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200}),d(".sale_price_dates_fields",i).find("input").datepicker({defaultDate:"",dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0,onSelect:function(){var a=d(this).is(".sale_price_dates_from")?"minDate":"maxDate",e=d(this).closest(".sale_price_dates_fields").find("input"),i=d(this).datepicker("getDate");e.not(this).datepicker("option",a,i),d(this).change()}}),d(".woocommerce_variations",i).sortable({items:".woocommerce_variation",cursor:"move",axis:"y",handle:".sort",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,stop:function(){o.variation_row_indexes()}}),d(document.body).trigger("wc-enhanced-select-init")},variation_added:function(a,e){1===e&&o.variations_loaded(null,!0)},set_menu_order:function(a){a.preventDefault();var e=d(this).closest(".woocommerce_variation").find(".variation_menu_order"),i=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_menu_order,e.val());null!=i&&(e.val(parseInt(i,10)).change(),n.save_variations())},variation_row_indexes:function(){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-page"),10),i=parseInt((e-1)*woocommerce_admin_meta_boxes_variations.variations_per_page,10);d(".woocommerce_variations .woocommerce_variation").each(function(a,e){d(".variation_menu_order",e).val(parseInt(d(e).index(".woocommerce_variations .woocommerce_variation"),10)+1+i).change()})}},t={variable_image_frame:null,setting_variation_image_id:null,setting_variation_image:null,wp_media_post_id:wp.media.model.settings.post.id,init:function(){d("#variable_product_options").on("click",".upload_image_button",this.add_image),d("a.add_media").on("click",this.restore_wp_media_post_id)},add_image:function(a){var e=d(this),i=e.attr("rel"),o=e.closest(".upload_image");if(t.setting_variation_image=o,t.setting_variation_image_id=i,a.preventDefault(),e.is(".remove"))d(".upload_image_id",t.setting_variation_image).val("").change(),t.setting_variation_image.find("img").eq(0).attr("src",woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src),t.setting_variation_image.find(".upload_image_button").removeClass("remove");else{if(t.variable_image_frame)return t.variable_image_frame.uploader.uploader.param("post_id",t.setting_variation_image_id),void t.variable_image_frame.open();wp.media.model.settings.post.id=t.setting_variation_image_id,t.variable_image_frame=wp.media.frames.variable_image=wp.media({title:woocommerce_admin_meta_boxes_variations.i18n_choose_image,button:{text:woocommerce_admin_meta_boxes_variations.i18n_set_image},states:[new wp.media.controller.Library({title:woocommerce_admin_meta_boxes_variations.i18n_choose_image,filterable:"all"})]}),t.variable_image_frame.on("select",function(){var a=t.variable_image_frame.state().get("selection").first().toJSON(),e=a.sizes&&a.sizes.thumbnail?a.sizes.thumbnail.url:a.url;d(".upload_image_id",t.setting_variation_image).val(a.id).change(),t.setting_variation_image.find(".upload_image_button").addClass("remove"),t.setting_variation_image.find("img").eq(0).attr("src",e),wp.media.model.settings.post.id=t.wp_media_post_id}),t.variable_image_frame.open()}},restore_wp_media_post_id:function(){wp.media.model.settings.post.id=t.wp_media_post_id}},n={init:function(){d("li.variations_tab a").on("click",this.initial_load),d("#variable_product_options").on("click","button.save-variation-changes",this.save_variations).on("click","button.cancel-variation-changes",this.cancel_variations).on("click",".remove_variation",this.remove_variation),d(document.body).on("change","#variable_product_options .woocommerce_variations :input",this.input_changed).on("change",".variations-defaults select",this.defaults_changed);var a=d("form#post");a.on("submit",this.save_on_submit),d("input:submit",a).bind("click keypress",function(){a.data("callerid",this.id)}),d(".wc-metaboxes-wrapper").on("click","a.do_variation_action",this.do_variation_action)},check_for_changes:function(){var a=d("#variable_product_options").find(".woocommerce_variations .variation-needs-update");if(0<a.length){if(!window.confirm(woocommerce_admin_meta_boxes_variations.i18n_edited_variations))return a.removeClass("variation-needs-update"),!1;n.save_changes()}return!0},block:function(){d("#woocommerce-product-data").block({message:null,overlayCSS:{background:"#fff",opacity:.6}})},unblock:function(){d("#woocommerce-product-data").unblock()},initial_load:function(){0===d("#variable_product_options").find(".woocommerce_variations .woocommerce_variation").length&&m.go_to_page()},load_variations:function(e,a){e=e||1,a=a||woocommerce_admin_meta_boxes_variations.variations_per_page;var i=d("#variable_product_options").find(".woocommerce_variations");n.block(),d.ajax({url:woocommerce_admin_meta_boxes_variations.ajax_url,data:{action:"woocommerce_load_variations",security:woocommerce_admin_meta_boxes_variations.load_variations_nonce,product_id:woocommerce_admin_meta_boxes_variations.post_id,attributes:i.data("attributes"),page:e,per_page:a},type:"POST",success:function(a){i.empty().append(a).attr("data-page",e),d("#woocommerce-product-data").trigger("woocommerce_variations_loaded"),n.unblock()}})},get_variations_fields:function(a){var o=d(":input",a).serializeJSON();return d(".variations-defaults select").each(function(a,e){var i=d(e);o[i.attr("name")]=i.val()}),o},save_changes:function(e){var a=d("#variable_product_options").find(".woocommerce_variations"),i=d(".variation-needs-update",a),o={};0<i.length&&(n.block(),(o=n.get_variations_fields(i)).action="woocommerce_save_variations",o.security=woocommerce_admin_meta_boxes_variations.save_variations_nonce,o.product_id=woocommerce_admin_meta_boxes_variations.post_id,o["product-type"]=d("#product-type").val(),d.ajax({url:woocommerce_admin_meta_boxes_variations.ajax_url,data:o,type:"POST",success:function(a){i.removeClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes").attr("disabled","disabled"),d("#woocommerce-product-data").trigger("woocommerce_variations_saved"),"function"==typeof e&&e(a),n.unblock()}}))},save_variations:function(){return d("#variable_product_options").trigger("woocommerce_variations_save_variations_button"),n.save_changes(function(a){var e=d("#variable_product_options").find(".woocommerce_variations"),i=e.attr("data-page");d("#variable_product_options").find("#woocommerce_errors").remove(),a&&e.before(a),d(".variations-defaults select").each(function(){d(this).attr("data-current",d(this).val())}),m.go_to_page(i)}),!1},save_on_submit:function(a){0<d("#variable_product_options").find(".woocommerce_variations .variation-needs-update").length&&(a.preventDefault(),d("#variable_product_options").trigger("woocommerce_variations_save_variations_on_submit"),n.save_changes(n.save_on_submit_done))},save_on_submit_done:function(){var a=d("form#post");"publish"===a.data("callerid")?a.append('<input type="hidden" name="publish" value="1" />').submit():a.append('<input type="hidden" name="save-post" value="1" />').submit()},cancel_variations:function(){var a=parseInt(d("#variable_product_options").find(".woocommerce_variations").attr("data-page"),10);return d("#variable_product_options").find(".woocommerce_variations .variation-needs-update").removeClass("variation-needs-update"),d(".variations-defaults select").each(function(){d(this).val(d(this).attr("data-current"))}),m.go_to_page(a),!1},add_variation:function(){n.block();var a={action:"woocommerce_add_variation",post_id:woocommerce_admin_meta_boxes_variations.post_id,loop:d(".woocommerce_variation").length,security:woocommerce_admin_meta_boxes_variations.add_variation_nonce};return d.post(woocommerce_admin_meta_boxes_variations.ajax_url,a,function(a){var e=d(a);e.addClass("variation-needs-update"),d("#variable_product_options").find(".woocommerce_variations").prepend(e),d("button.cancel-variation-changes, button.save-variation-changes").removeAttr("disabled"),d("#variable_product_options").trigger("woocommerce_variations_added",1),n.unblock()}),!1},remove_variation:function(){if(n.check_for_changes(),window.confirm(woocommerce_admin_meta_boxes_variations.i18n_remove_variation)){var a=d(this).attr("rel"),e=[],i={action:"woocommerce_remove_variations"};n.block(),0<a?(e.push(a),i.variation_ids=e,i.security=woocommerce_admin_meta_boxes_variations.delete_variations_nonce,d.post(woocommerce_admin_meta_boxes_variations.ajax_url,i,function(){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-page"),10),i=Math.ceil((parseInt(a.attr("data-total"),10)-1)/woocommerce_admin_meta_boxes_variations.variations_per_page),o=1;d("#woocommerce-product-data").trigger("woocommerce_variations_removed"),e===i||e<=i?o=e:i<e&&0!==i&&(o=i),m.go_to_page(o,-1)})):n.unblock()}return!1},link_all_variations:function(){if(n.check_for_changes(),window.confirm(woocommerce_admin_meta_boxes_variations.i18n_link_all_variations)){n.block();var a={action:"woocommerce_link_all_variations",post_id:woocommerce_admin_meta_boxes_variations.post_id,security:woocommerce_admin_meta_boxes_variations.link_variation_nonce};d.post(woocommerce_admin_meta_boxes_variations.ajax_url,a,function(a){var e=parseInt(a,10);1===e?window.alert(e+" "+woocommerce_admin_meta_boxes_variations.i18n_variation_added):0===e||1<e?window.alert(e+" "+woocommerce_admin_meta_boxes_variations.i18n_variations_added):window.alert(woocommerce_admin_meta_boxes_variations.i18n_no_variations_added),0<e?(m.go_to_page(1,e),d("#variable_product_options").trigger("woocommerce_variations_added",e)):n.unblock()})}return!1},input_changed:function(){d(this).closest(".woocommerce_variation").addClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes").removeAttr("disabled"),d("#variable_product_options").trigger("woocommerce_variations_input_changed")},defaults_changed:function(){d(this).closest("#variable_product_options").find(".woocommerce_variation:first").addClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes").removeAttr("disabled"),d("#variable_product_options").trigger("woocommerce_variations_defaults_changed")},do_variation_action:function(){var a,e=d("select.variation_actions").val(),i={},o=0;switch(e){case"add_variation":return void n.add_variation();case"link_all_variations":return void n.link_all_variations();case"delete_all":window.confirm(woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations)&&window.confirm(woocommerce_admin_meta_boxes_variations.i18n_last_warning)&&(i.allowed=!0,o=-1*parseInt(d("#variable_product_options").find(".woocommerce_variations").attr("data-total"),10));break;case"variable_regular_price_increase":case"variable_regular_price_decrease":case"variable_sale_price_increase":case"variable_sale_price_decrease":if(null==(a=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value_fixed_or_percent)))return;0<=a.indexOf("%")?i.value=accounting.unformat(a.replace(/\%/,""),woocommerce_admin.mon_decimal_point)+"%":i.value=accounting.unformat(a,woocommerce_admin.mon_decimal_point);break;case"variable_regular_price":case"variable_sale_price":case"variable_stock":case"variable_weight":case"variable_length":case"variable_width":case"variable_height":case"variable_download_limit":case"variable_download_expiry":if(null==(a=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value)))return;i.value=a;break;case"variable_sale_schedule":if(i.date_from=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_scheduled_sale_start),i.date_to=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_scheduled_sale_end),null===i.date_from&&(i.date_from=!1),null===i.date_to&&(i.date_to=!1),!1===i.date_to&&!1===i.date_from)return;break;default:d("select.variation_actions").trigger(e),i=d("select.variation_actions").triggerHandler(e+"_ajax_data",i)}"delete_all"===e&&i.allowed?d("#variable_product_options").find(".variation-needs-update").removeClass("variation-needs-update"):n.check_for_changes(),n.block(),d.ajax({url:woocommerce_admin_meta_boxes_variations.ajax_url,data:{action:"woocommerce_bulk_edit_variations",security:woocommerce_admin_meta_boxes_variations.bulk_edit_variations_nonce,product_id:woocommerce_admin_meta_boxes_variations.post_id,product_type:d("#product-type").val(),bulk_action:e,data:i},type:"POST",success:function(){m.go_to_page(1,o)}})}},m={init:function(){d(document.body).on("woocommerce_variations_added",this.update_single_quantity).on("change",".variations-pagenav .page-selector",this.page_selector).on("click",".variations-pagenav .first-page",this.first_page).on("click",".variations-pagenav .prev-page",this.prev_page).on("click",".variations-pagenav .next-page",this.next_page).on("click",".variations-pagenav .last-page",this.last_page)},update_variations_count:function(a){var e=d("#variable_product_options").find(".woocommerce_variations"),i=parseInt(e.attr("data-total"),10)+a,o=d(".variations-pagenav .displaying-num");return e.attr("data-total",i),1===i?o.text(woocommerce_admin_meta_boxes_variations.i18n_variation_count_single.replace("%qty%",i)):o.text(woocommerce_admin_meta_boxes_variations.i18n_variation_count_plural.replace("%qty%",i)),i},update_single_quantity:function(a,e){if(1===e){var i=d(".variations-pagenav");m.update_variations_count(e),i.is(":hidden")&&(d("option, optgroup",".variation_actions").show(),d(".variation_actions").val("add_variation"),d("#variable_product_options").find(".toolbar").show(),i.show(),d(".pagination-links",i).hide())}},set_paginav:function(a){var e=d("#variable_product_options").find(".woocommerce_variations"),i=m.update_variations_count(a),o=d("#variable_product_options").find(".toolbar"),t=d(".variation_actions"),n=d(".variations-pagenav"),r=d(".pagination-links",n),_=Math.ceil(i/woocommerce_admin_meta_boxes_variations.variations_per_page),s="";e.attr("data-total_pages",_),d(".total-pages",n).text(_);for(var c=1;c<=_;c++)s+='<option value="'+c+'">'+c+"</option>";d(".page-selector",n).empty().html(s),0===i?(o.not(".toolbar-top, .toolbar-buttons").hide(),n.hide(),d("option, optgroup",t).hide(),d(".variation_actions").val("add_variation"),d('option[data-global="true"]',t).show()):(o.show(),n.show(),d("option, optgroup",t).show(),d(".variation_actions").val("add_variation"),1===_?r.hide():r.show())},check_is_enabled:function(a){return!d(a).hasClass("disabled")},change_classes:function(a,e){var i=d(".variations-pagenav .first-page"),o=d(".variations-pagenav .prev-page"),t=d(".variations-pagenav .next-page"),n=d(".variations-pagenav .last-page");1===a?(i.addClass("disabled"),o.addClass("disabled")):(i.removeClass("disabled"),o.removeClass("disabled")),e===a?(t.addClass("disabled"),n.addClass("disabled")):(t.removeClass("disabled"),n.removeClass("disabled"))},set_page:function(a){d(".variations-pagenav .page-selector").val(a).first().change()},go_to_page:function(a,e){a=a||1,e=e||0,m.set_paginav(e),m.set_page(a)},page_selector:function(){var a=parseInt(d(this).val(),10),e=d("#variable_product_options").find(".woocommerce_variations");d(".variations-pagenav .page-selector").val(a),n.check_for_changes(),m.change_classes(a,parseInt(e.attr("data-total_pages"),10)),n.load_variations(a)},first_page:function(){return m.check_is_enabled(this)&&m.set_page(1),!1},prev_page:function(){if(m.check_is_enabled(this)){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-page"),10)-1,i=0<e?e:1;m.set_page(i)}return!1},next_page:function(){if(m.check_is_enabled(this)){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-total_pages"),10),i=parseInt(a.attr("data-page"),10)+1,o=i<=e?i:e;m.set_page(o)}return!1},last_page:function(){if(m.check_is_enabled(this)){var a=d("#variable_product_options").find(".woocommerce_variations").attr("data-total_pages");m.set_page(a)}return!1}};o.init(),t.init(),n.init(),m.init()});
1
+ jQuery(function(d){"use strict";var o={init:function(){d("#variable_product_options").on("change","input.variable_is_downloadable",this.variable_is_downloadable).on("change","input.variable_is_virtual",this.variable_is_virtual).on("change","input.variable_manage_stock",this.variable_manage_stock).on("click","button.notice-dismiss",this.notice_dismiss).on("click","h3 .sort",this.set_menu_order).on("reload",this.reload),d("input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock").change(),d("#woocommerce-product-data").on("woocommerce_variations_loaded",this.variations_loaded),d(document.body).on("woocommerce_variations_added",this.variation_added)},reload:function(){n.load_variations(1),m.set_paginav(0)},variable_is_downloadable:function(){d(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").hide(),d(this).is(":checked")&&d(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").show()},variable_is_virtual:function(){d(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").show(),d(this).is(":checked")&&d(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").hide()},variable_manage_stock:function(){d(this).closest(".woocommerce_variation").find(".show_if_variation_manage_stock").hide(),d(this).closest(".woocommerce_variation").find(".variable_stock_status").show(),d(this).is(":checked")&&(d(this).closest(".woocommerce_variation").find(".show_if_variation_manage_stock").show(),d(this).closest(".woocommerce_variation").find(".variable_stock_status").hide()),d("input#_manage_stock:checked").length&&d(this).closest(".woocommerce_variation").find(".variable_stock_status").hide()},notice_dismiss:function(){d(this).closest("div.notice").remove()},variations_loaded:function(a,e){e=e||!1;var i=d("#woocommerce-product-data");e||(d("input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock",i).change(),d(".woocommerce_variation",i).each(function(a,e){var i=d(e),o=d(".sale_price_dates_from",i).val(),t=d(".sale_price_dates_to",i).val();""===o&&""===t||d("a.sale_schedule",i).click()}),d(".woocommerce_variations .variation-needs-update",i).removeClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes",i).attr("disabled","disabled")),d("#tiptip_holder").removeAttr("style"),d("#tiptip_arrow").removeAttr("style"),d(".woocommerce_variations .tips, .woocommerce_variations .help_tip, .woocommerce_variations .woocommerce-help-tip",i).tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200}),d(".sale_price_dates_fields",i).find("input").datepicker({defaultDate:"",dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0,onSelect:function(){var a=d(this).is(".sale_price_dates_from")?"minDate":"maxDate",e=d(this).closest(".sale_price_dates_fields").find("input"),i=d(this).datepicker("getDate");e.not(this).datepicker("option",a,i),d(this).change()}}),d(".woocommerce_variations",i).sortable({items:".woocommerce_variation",cursor:"move",axis:"y",handle:".sort",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,stop:function(){o.variation_row_indexes()}}),d(document.body).trigger("wc-enhanced-select-init")},variation_added:function(a,e){1===e&&o.variations_loaded(null,!0)},set_menu_order:function(a){a.preventDefault();var e=d(this).closest(".woocommerce_variation").find(".variation_menu_order"),i=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_menu_order,e.val());null!=i&&(e.val(parseInt(i,10)).change(),n.save_variations())},variation_row_indexes:function(){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-page"),10),i=parseInt((e-1)*woocommerce_admin_meta_boxes_variations.variations_per_page,10);d(".woocommerce_variations .woocommerce_variation").each(function(a,e){d(".variation_menu_order",e).val(parseInt(d(e).index(".woocommerce_variations .woocommerce_variation"),10)+1+i).change()})}},t={variable_image_frame:null,setting_variation_image_id:null,setting_variation_image:null,wp_media_post_id:wp.media.model.settings.post.id,init:function(){d("#variable_product_options").on("click",".upload_image_button",this.add_image),d("a.add_media").on("click",this.restore_wp_media_post_id)},add_image:function(a){var e=d(this),i=e.attr("rel"),o=e.closest(".upload_image");if(t.setting_variation_image=o,t.setting_variation_image_id=i,a.preventDefault(),e.is(".remove"))d(".upload_image_id",t.setting_variation_image).val("").change(),t.setting_variation_image.find("img").eq(0).attr("src",woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src),t.setting_variation_image.find(".upload_image_button").removeClass("remove");else{if(t.variable_image_frame)return t.variable_image_frame.uploader.uploader.param("post_id",t.setting_variation_image_id),void t.variable_image_frame.open();wp.media.model.settings.post.id=t.setting_variation_image_id,t.variable_image_frame=wp.media.frames.variable_image=wp.media({title:woocommerce_admin_meta_boxes_variations.i18n_choose_image,button:{text:woocommerce_admin_meta_boxes_variations.i18n_set_image},states:[new wp.media.controller.Library({title:woocommerce_admin_meta_boxes_variations.i18n_choose_image,filterable:"all"})]}),t.variable_image_frame.on("select",function(){var a=t.variable_image_frame.state().get("selection").first().toJSON(),e=a.sizes&&a.sizes.thumbnail?a.sizes.thumbnail.url:a.url;d(".upload_image_id",t.setting_variation_image).val(a.id).change(),t.setting_variation_image.find(".upload_image_button").addClass("remove"),t.setting_variation_image.find("img").eq(0).attr("src",e),wp.media.model.settings.post.id=t.wp_media_post_id}),t.variable_image_frame.open()}},restore_wp_media_post_id:function(){wp.media.model.settings.post.id=t.wp_media_post_id}},n={init:function(){d("li.variations_tab a").on("click",this.initial_load),d("#variable_product_options").on("click","button.save-variation-changes",this.save_variations).on("click","button.cancel-variation-changes",this.cancel_variations).on("click",".remove_variation",this.remove_variation).on("click",".downloadable_files a.delete",this.input_changed),d(document.body).on("change","#variable_product_options .woocommerce_variations :input",this.input_changed).on("change",".variations-defaults select",this.defaults_changed);var a=d("form#post");a.on("submit",this.save_on_submit),d("input:submit",a).bind("click keypress",function(){a.data("callerid",this.id)}),d(".wc-metaboxes-wrapper").on("click","a.do_variation_action",this.do_variation_action)},check_for_changes:function(){var a=d("#variable_product_options").find(".woocommerce_variations .variation-needs-update");if(0<a.length){if(!window.confirm(woocommerce_admin_meta_boxes_variations.i18n_edited_variations))return a.removeClass("variation-needs-update"),!1;n.save_changes()}return!0},block:function(){d("#woocommerce-product-data").block({message:null,overlayCSS:{background:"#fff",opacity:.6}})},unblock:function(){d("#woocommerce-product-data").unblock()},initial_load:function(){0===d("#variable_product_options").find(".woocommerce_variations .woocommerce_variation").length&&m.go_to_page()},load_variations:function(e,a){e=e||1,a=a||woocommerce_admin_meta_boxes_variations.variations_per_page;var i=d("#variable_product_options").find(".woocommerce_variations");n.block(),d.ajax({url:woocommerce_admin_meta_boxes_variations.ajax_url,data:{action:"woocommerce_load_variations",security:woocommerce_admin_meta_boxes_variations.load_variations_nonce,product_id:woocommerce_admin_meta_boxes_variations.post_id,attributes:i.data("attributes"),page:e,per_page:a},type:"POST",success:function(a){i.empty().append(a).attr("data-page",e),d("#woocommerce-product-data").trigger("woocommerce_variations_loaded"),n.unblock()}})},get_variations_fields:function(a){var o=d(":input",a).serializeJSON();return d(".variations-defaults select").each(function(a,e){var i=d(e);o[i.attr("name")]=i.val()}),o},save_changes:function(e){var a=d("#variable_product_options").find(".woocommerce_variations"),i=d(".variation-needs-update",a),o={};0<i.length&&(n.block(),(o=n.get_variations_fields(i)).action="woocommerce_save_variations",o.security=woocommerce_admin_meta_boxes_variations.save_variations_nonce,o.product_id=woocommerce_admin_meta_boxes_variations.post_id,o["product-type"]=d("#product-type").val(),d.ajax({url:woocommerce_admin_meta_boxes_variations.ajax_url,data:o,type:"POST",success:function(a){i.removeClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes").attr("disabled","disabled"),d("#woocommerce-product-data").trigger("woocommerce_variations_saved"),"function"==typeof e&&e(a),n.unblock()}}))},save_variations:function(){return d("#variable_product_options").trigger("woocommerce_variations_save_variations_button"),n.save_changes(function(a){var e=d("#variable_product_options").find(".woocommerce_variations"),i=e.attr("data-page");d("#variable_product_options").find("#woocommerce_errors").remove(),a&&e.before(a),d(".variations-defaults select").each(function(){d(this).attr("data-current",d(this).val())}),m.go_to_page(i)}),!1},save_on_submit:function(a){0<d("#variable_product_options").find(".woocommerce_variations .variation-needs-update").length&&(a.preventDefault(),d("#variable_product_options").trigger("woocommerce_variations_save_variations_on_submit"),n.save_changes(n.save_on_submit_done))},save_on_submit_done:function(){var a=d("form#post");"publish"===a.data("callerid")?a.append('<input type="hidden" name="publish" value="1" />').submit():a.append('<input type="hidden" name="save-post" value="1" />').submit()},cancel_variations:function(){var a=parseInt(d("#variable_product_options").find(".woocommerce_variations").attr("data-page"),10);return d("#variable_product_options").find(".woocommerce_variations .variation-needs-update").removeClass("variation-needs-update"),d(".variations-defaults select").each(function(){d(this).val(d(this).attr("data-current"))}),m.go_to_page(a),!1},add_variation:function(){n.block();var a={action:"woocommerce_add_variation",post_id:woocommerce_admin_meta_boxes_variations.post_id,loop:d(".woocommerce_variation").length,security:woocommerce_admin_meta_boxes_variations.add_variation_nonce};return d.post(woocommerce_admin_meta_boxes_variations.ajax_url,a,function(a){var e=d(a);e.addClass("variation-needs-update"),d("#variable_product_options").find(".woocommerce_variations").prepend(e),d("button.cancel-variation-changes, button.save-variation-changes").removeAttr("disabled"),d("#variable_product_options").trigger("woocommerce_variations_added",1),n.unblock()}),!1},remove_variation:function(){if(n.check_for_changes(),window.confirm(woocommerce_admin_meta_boxes_variations.i18n_remove_variation)){var a=d(this).attr("rel"),e=[],i={action:"woocommerce_remove_variations"};n.block(),0<a?(e.push(a),i.variation_ids=e,i.security=woocommerce_admin_meta_boxes_variations.delete_variations_nonce,d.post(woocommerce_admin_meta_boxes_variations.ajax_url,i,function(){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-page"),10),i=Math.ceil((parseInt(a.attr("data-total"),10)-1)/woocommerce_admin_meta_boxes_variations.variations_per_page),o=1;d("#woocommerce-product-data").trigger("woocommerce_variations_removed"),e===i||e<=i?o=e:i<e&&0!==i&&(o=i),m.go_to_page(o,-1)})):n.unblock()}return!1},link_all_variations:function(){if(n.check_for_changes(),window.confirm(woocommerce_admin_meta_boxes_variations.i18n_link_all_variations)){n.block();var a={action:"woocommerce_link_all_variations",post_id:woocommerce_admin_meta_boxes_variations.post_id,security:woocommerce_admin_meta_boxes_variations.link_variation_nonce};d.post(woocommerce_admin_meta_boxes_variations.ajax_url,a,function(a){var e=parseInt(a,10);1===e?window.alert(e+" "+woocommerce_admin_meta_boxes_variations.i18n_variation_added):0===e||1<e?window.alert(e+" "+woocommerce_admin_meta_boxes_variations.i18n_variations_added):window.alert(woocommerce_admin_meta_boxes_variations.i18n_no_variations_added),0<e?(m.go_to_page(1,e),d("#variable_product_options").trigger("woocommerce_variations_added",e)):n.unblock()})}return!1},input_changed:function(){d(this).closest(".woocommerce_variation").addClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes").removeAttr("disabled"),d("#variable_product_options").trigger("woocommerce_variations_input_changed")},defaults_changed:function(){d(this).closest("#variable_product_options").find(".woocommerce_variation:first").addClass("variation-needs-update"),d("button.cancel-variation-changes, button.save-variation-changes").removeAttr("disabled"),d("#variable_product_options").trigger("woocommerce_variations_defaults_changed")},do_variation_action:function(){var a,e=d("select.variation_actions").val(),i={},o=0;switch(e){case"add_variation":return void n.add_variation();case"link_all_variations":return void n.link_all_variations();case"delete_all":window.confirm(woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations)&&window.confirm(woocommerce_admin_meta_boxes_variations.i18n_last_warning)&&(i.allowed=!0,o=-1*parseInt(d("#variable_product_options").find(".woocommerce_variations").attr("data-total"),10));break;case"variable_regular_price_increase":case"variable_regular_price_decrease":case"variable_sale_price_increase":case"variable_sale_price_decrease":if(null==(a=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value_fixed_or_percent)))return;0<=a.indexOf("%")?i.value=accounting.unformat(a.replace(/\%/,""),woocommerce_admin.mon_decimal_point)+"%":i.value=accounting.unformat(a,woocommerce_admin.mon_decimal_point);break;case"variable_regular_price":case"variable_sale_price":case"variable_stock":case"variable_weight":case"variable_length":case"variable_width":case"variable_height":case"variable_download_limit":case"variable_download_expiry":if(null==(a=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value)))return;i.value=a;break;case"variable_sale_schedule":if(i.date_from=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_scheduled_sale_start),i.date_to=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_scheduled_sale_end),null===i.date_from&&(i.date_from=!1),null===i.date_to&&(i.date_to=!1),!1===i.date_to&&!1===i.date_from)return;break;default:d("select.variation_actions").trigger(e),i=d("select.variation_actions").triggerHandler(e+"_ajax_data",i)}"delete_all"===e&&i.allowed?d("#variable_product_options").find(".variation-needs-update").removeClass("variation-needs-update"):n.check_for_changes(),n.block(),d.ajax({url:woocommerce_admin_meta_boxes_variations.ajax_url,data:{action:"woocommerce_bulk_edit_variations",security:woocommerce_admin_meta_boxes_variations.bulk_edit_variations_nonce,product_id:woocommerce_admin_meta_boxes_variations.post_id,product_type:d("#product-type").val(),bulk_action:e,data:i},type:"POST",success:function(){m.go_to_page(1,o)}})}},m={init:function(){d(document.body).on("woocommerce_variations_added",this.update_single_quantity).on("change",".variations-pagenav .page-selector",this.page_selector).on("click",".variations-pagenav .first-page",this.first_page).on("click",".variations-pagenav .prev-page",this.prev_page).on("click",".variations-pagenav .next-page",this.next_page).on("click",".variations-pagenav .last-page",this.last_page)},update_variations_count:function(a){var e=d("#variable_product_options").find(".woocommerce_variations"),i=parseInt(e.attr("data-total"),10)+a,o=d(".variations-pagenav .displaying-num");return e.attr("data-total",i),1===i?o.text(woocommerce_admin_meta_boxes_variations.i18n_variation_count_single.replace("%qty%",i)):o.text(woocommerce_admin_meta_boxes_variations.i18n_variation_count_plural.replace("%qty%",i)),i},update_single_quantity:function(a,e){if(1===e){var i=d(".variations-pagenav");m.update_variations_count(e),i.is(":hidden")&&(d("option, optgroup",".variation_actions").show(),d(".variation_actions").val("add_variation"),d("#variable_product_options").find(".toolbar").show(),i.show(),d(".pagination-links",i).hide())}},set_paginav:function(a){var e=d("#variable_product_options").find(".woocommerce_variations"),i=m.update_variations_count(a),o=d("#variable_product_options").find(".toolbar"),t=d(".variation_actions"),n=d(".variations-pagenav"),r=d(".pagination-links",n),_=Math.ceil(i/woocommerce_admin_meta_boxes_variations.variations_per_page),s="";e.attr("data-total_pages",_),d(".total-pages",n).text(_);for(var c=1;c<=_;c++)s+='<option value="'+c+'">'+c+"</option>";d(".page-selector",n).empty().html(s),0===i?(o.not(".toolbar-top, .toolbar-buttons").hide(),n.hide(),d("option, optgroup",t).hide(),d(".variation_actions").val("add_variation"),d('option[data-global="true"]',t).show()):(o.show(),n.show(),d("option, optgroup",t).show(),d(".variation_actions").val("add_variation"),1===_?r.hide():r.show())},check_is_enabled:function(a){return!d(a).hasClass("disabled")},change_classes:function(a,e){var i=d(".variations-pagenav .first-page"),o=d(".variations-pagenav .prev-page"),t=d(".variations-pagenav .next-page"),n=d(".variations-pagenav .last-page");1===a?(i.addClass("disabled"),o.addClass("disabled")):(i.removeClass("disabled"),o.removeClass("disabled")),e===a?(t.addClass("disabled"),n.addClass("disabled")):(t.removeClass("disabled"),n.removeClass("disabled"))},set_page:function(a){d(".variations-pagenav .page-selector").val(a).first().change()},go_to_page:function(a,e){a=a||1,e=e||0,m.set_paginav(e),m.set_page(a)},page_selector:function(){var a=parseInt(d(this).val(),10),e=d("#variable_product_options").find(".woocommerce_variations");d(".variations-pagenav .page-selector").val(a),n.check_for_changes(),m.change_classes(a,parseInt(e.attr("data-total_pages"),10)),n.load_variations(a)},first_page:function(){return m.check_is_enabled(this)&&m.set_page(1),!1},prev_page:function(){if(m.check_is_enabled(this)){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-page"),10)-1,i=0<e?e:1;m.set_page(i)}return!1},next_page:function(){if(m.check_is_enabled(this)){var a=d("#variable_product_options").find(".woocommerce_variations"),e=parseInt(a.attr("data-total_pages"),10),i=parseInt(a.attr("data-page"),10)+1,o=i<=e?i:e;m.set_page(o)}return!1},last_page:function(){if(m.check_is_enabled(this)){var a=d("#variable_product_options").find(".woocommerce_variations").attr("data-total_pages");m.set_page(a)}return!1}};o.init(),t.init(),n.init(),m.init()});
assets/js/admin/reports.js CHANGED
@@ -138,7 +138,7 @@ jQuery(function( $ ) {
138
  var groupby = $( this ) .data( 'groupby' );
139
  var index_type = $( this ).data( 'index_type' );
140
  var export_format = $( this ).data( 'export' );
141
- var csv_data = 'data:text/csv;charset=utf-8,\uFEFF';
142
  var s, series_data, d;
143
 
144
  if ( 'table' === export_format ) {
@@ -243,8 +243,9 @@ jQuery(function( $ ) {
243
  } );
244
  }
245
 
 
246
  // Set data as href and return
247
- $( this ).attr( 'href', encodeURI( csv_data ) );
248
  return true;
249
  });
250
  });
138
  var groupby = $( this ) .data( 'groupby' );
139
  var index_type = $( this ).data( 'index_type' );
140
  var export_format = $( this ).data( 'export' );
141
+ var csv_data = '';
142
  var s, series_data, d;
143
 
144
  if ( 'table' === export_format ) {
243
  } );
244
  }
245
 
246
+ csv_data = 'data:text/csv;charset=utf-8,\uFEFF' + encodeURIComponent( csv_data );
247
  // Set data as href and return
248
+ $( this ).attr( 'href', csv_data );
249
  return true;
250
  });
251
  });
assets/js/admin/reports.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(f){function r(t,e,a){f('<div class="chart-tooltip">'+a+"</div>").css({top:e-16,left:t+20}).appendTo("body").fadeIn(200)}var o=null,s=null;f(".chart-placeholder").bind("plothover",function(t,e,a){if(a){if((o!==a.dataIndex||s!==a.seriesIndex)&&(o=a.dataIndex,s=a.seriesIndex,f(".chart-tooltip").remove(),a.series.points.show||a.series.enable_tooltip)){var n=a.series.data[a.dataIndex][1],i="";a.series.prepend_label&&(i=i+a.series.label+": "),a.series.prepend_tooltip&&(i+=a.series.prepend_tooltip),i+=n,a.series.append_tooltip&&(i+=a.series.append_tooltip),a.series.pie.show?r(e.pageX,e.pageY,i):r(a.pageX,a.pageY,i)}}else f(".chart-tooltip").remove(),o=null}),f(".wc_sparkline.bars").each(function(){var t=[{data:f(this).data("sparkline"),color:f(this).data("color"),bars:{fillColor:f(this).data("color"),fill:!0,show:!0,lineWidth:1,barWidth:f(this).data("barwidth"),align:"center"},shadowSize:0}];f.plot(f(this),t,{grid:{show:!1}})}),f(".wc_sparkline.lines").each(function(){var t=[{data:f(this).data("sparkline"),color:f(this).data("color"),lines:{fill:!1,show:!0,lineWidth:1,align:"center"},shadowSize:0}];f.plot(f(this),t,{grid:{show:!1}})});var a=f(".range_datepicker").datepicker({changeMonth:!0,changeYear:!0,defaultDate:"",dateFormat:"yy-mm-dd",numberOfMonths:1,minDate:"-20Y",maxDate:"+1D",showButtonPanel:!0,showOn:"focus",buttonImageOnly:!0,onSelect:function(){var t=f(this).is(".from")?"minDate":"maxDate",e=f(this).datepicker("getDate");a.not(this).datepicker("option",t,e)}});"undefined"==typeof document.createElement("a").download&&f(".export_csv").hide(),f(".export_csv").click(function(){var a=f(this).data("exclude_series")||"";a=(a=a.toString()).split(",");var t,e,n,i=f(this).data("xaxes"),r=f(this).data("groupby"),o=f(this).data("index_type"),s=f(this).data("export"),l="data:text/csv;charset=utf-8,\ufeff";if("table"===s)f(this).offsetParent().find("thead tr,tbody tr").each(function(){f(this).find("th, td").each(function(){var t=f(this).text();t=t.replace("[?]","").replace("#",""),l+='"'+t+'",'}),l=l.substring(0,l.length-1),l+="\n"}),f(this).offsetParent().find("tfoot tr").each(function(){f(this).find("th, td").each(function(){var t=f(this).text();if(t=t.replace("[?]","").replace("#",""),l+='"'+t+'",',0<f(this).attr("colspan"))for(p=1;p<f(this).attr("colspan");p++)l+='"",'}),l=l.substring(0,l.length-1),l+="\n"});else{if(!window.main_chart)return!1;var h=window.main_chart.getData(),d=[];for(l+='"'+i+'",',f.each(h,function(t,e){a&&-1!==f.inArray(t.toString(),a)||d.push(e)}),t=0;t<d.length;++t)l+='"'+d[t].label+'",';l=l.substring(0,l.length-1),l+="\n";var c={};for(t=0;t<d.length;++t)for(e=d[t].data,n=0;n<e.length;++n){c[e[n][0]]=[];for(var p=0;p<d.length;++p)c[e[n][0]].push(0)}for(t=0;t<d.length;++t)for(e=d[t].data,n=0;n<e.length;++n)c[e[n][0]][t]=e[n][1];f.each(c,function(t,e){var a=new Date(parseInt(t,10));l+="none"===o?'"'+t+'",':"day"===r?'"'+a.getUTCFullYear()+"-"+parseInt(a.getUTCMonth()+1,10)+"-"+a.getUTCDate()+'",':'"'+a.getUTCFullYear()+"-"+parseInt(a.getUTCMonth()+1,10)+'",';for(var n=0;n<e.length;++n){var i=e[n];Math.round(i)!==i&&(i=(i=parseFloat(i)).toFixed(2)),l+='"'+i+'",'}l=l.substring(0,l.length-1),l+="\n"})}return f(this).attr("href",encodeURI(l)),!0})});
1
+ jQuery(function(f){function r(t,e,a){f('<div class="chart-tooltip">'+a+"</div>").css({top:e-16,left:t+20}).appendTo("body").fadeIn(200)}var o=null,s=null;f(".chart-placeholder").bind("plothover",function(t,e,a){if(a){if((o!==a.dataIndex||s!==a.seriesIndex)&&(o=a.dataIndex,s=a.seriesIndex,f(".chart-tooltip").remove(),a.series.points.show||a.series.enable_tooltip)){var n=a.series.data[a.dataIndex][1],i="";a.series.prepend_label&&(i=i+a.series.label+": "),a.series.prepend_tooltip&&(i+=a.series.prepend_tooltip),i+=n,a.series.append_tooltip&&(i+=a.series.append_tooltip),a.series.pie.show?r(e.pageX,e.pageY,i):r(a.pageX,a.pageY,i)}}else f(".chart-tooltip").remove(),o=null}),f(".wc_sparkline.bars").each(function(){var t=[{data:f(this).data("sparkline"),color:f(this).data("color"),bars:{fillColor:f(this).data("color"),fill:!0,show:!0,lineWidth:1,barWidth:f(this).data("barwidth"),align:"center"},shadowSize:0}];f.plot(f(this),t,{grid:{show:!1}})}),f(".wc_sparkline.lines").each(function(){var t=[{data:f(this).data("sparkline"),color:f(this).data("color"),lines:{fill:!1,show:!0,lineWidth:1,align:"center"},shadowSize:0}];f.plot(f(this),t,{grid:{show:!1}})});var a=f(".range_datepicker").datepicker({changeMonth:!0,changeYear:!0,defaultDate:"",dateFormat:"yy-mm-dd",numberOfMonths:1,minDate:"-20Y",maxDate:"+1D",showButtonPanel:!0,showOn:"focus",buttonImageOnly:!0,onSelect:function(){var t=f(this).is(".from")?"minDate":"maxDate",e=f(this).datepicker("getDate");a.not(this).datepicker("option",t,e)}});"undefined"==typeof document.createElement("a").download&&f(".export_csv").hide(),f(".export_csv").click(function(){var a=f(this).data("exclude_series")||"";a=(a=a.toString()).split(",");var t,e,n,i=f(this).data("xaxes"),r=f(this).data("groupby"),o=f(this).data("index_type"),s=f(this).data("export"),l="";if("table"===s)f(this).offsetParent().find("thead tr,tbody tr").each(function(){f(this).find("th, td").each(function(){var t=f(this).text();t=t.replace("[?]","").replace("#",""),l+='"'+t+'",'}),l=l.substring(0,l.length-1),l+="\n"}),f(this).offsetParent().find("tfoot tr").each(function(){f(this).find("th, td").each(function(){var t=f(this).text();if(t=t.replace("[?]","").replace("#",""),l+='"'+t+'",',0<f(this).attr("colspan"))for(p=1;p<f(this).attr("colspan");p++)l+='"",'}),l=l.substring(0,l.length-1),l+="\n"});else{if(!window.main_chart)return!1;var h=window.main_chart.getData(),d=[];for(l+='"'+i+'",',f.each(h,function(t,e){a&&-1!==f.inArray(t.toString(),a)||d.push(e)}),t=0;t<d.length;++t)l+='"'+d[t].label+'",';l=l.substring(0,l.length-1),l+="\n";var c={};for(t=0;t<d.length;++t)for(e=d[t].data,n=0;n<e.length;++n){c[e[n][0]]=[];for(var p=0;p<d.length;++p)c[e[n][0]].push(0)}for(t=0;t<d.length;++t)for(e=d[t].data,n=0;n<e.length;++n)c[e[n][0]][t]=e[n][1];f.each(c,function(t,e){var a=new Date(parseInt(t,10));l+="none"===o?'"'+t+'",':"day"===r?'"'+a.getUTCFullYear()+"-"+parseInt(a.getUTCMonth()+1,10)+"-"+a.getUTCDate()+'",':'"'+a.getUTCFullYear()+"-"+parseInt(a.getUTCMonth()+1,10)+'",';for(var n=0;n<e.length;++n){var i=e[n];Math.round(i)!==i&&(i=(i=parseFloat(i)).toFixed(2)),l+='"'+i+'",'}l=l.substring(0,l.length-1),l+="\n"})}return l="data:text/csv;charset=utf-8,\ufeff"+encodeURIComponent(l),f(this).attr("href",l),!0})});
assets/js/admin/settings.js CHANGED
@@ -161,12 +161,28 @@
161
  lastRow = $( this ).find( 'tbody tr:last' ),
162
  firstRow = $( this ).find( 'tbody tr:first' );
163
 
164
- table.find( '.wc-item-reorder-nav .wc-move-disabled' ).removeClass( 'wc-move-disabled' ).attr( { 'tabindex': '0', 'aria-hidden': 'false' } );
165
- firstRow.find( '.wc-item-reorder-nav .wc-move-up' ).addClass( 'wc-move-disabled' ).attr( { 'tabindex': '-1', 'aria-hidden': 'true' } );
166
- lastRow.find( '.wc-item-reorder-nav .wc-move-down' ).addClass( 'wc-move-disabled' ).attr( { 'tabindex': '-1', 'aria-hidden': 'true' } );
 
 
 
167
  } );
168
 
169
  $( '.wc-item-reorder-nav').closest( 'table' ).trigger( 'updateMoveButtons' );
170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  });
172
  })( jQuery, woocommerce_settings_params, wp );
161
  lastRow = $( this ).find( 'tbody tr:last' ),
162
  firstRow = $( this ).find( 'tbody tr:first' );
163
 
164
+ table.find( '.wc-item-reorder-nav .wc-move-disabled' ).removeClass( 'wc-move-disabled' )
165
+ .attr( { 'tabindex': '0', 'aria-hidden': 'false' } );
166
+ firstRow.find( '.wc-item-reorder-nav .wc-move-up' ).addClass( 'wc-move-disabled' )
167
+ .attr( { 'tabindex': '-1', 'aria-hidden': 'true' } );
168
+ lastRow.find( '.wc-item-reorder-nav .wc-move-down' ).addClass( 'wc-move-disabled' )
169
+ .attr( { 'tabindex': '-1', 'aria-hidden': 'true' } );
170
  } );
171
 
172
  $( '.wc-item-reorder-nav').closest( 'table' ).trigger( 'updateMoveButtons' );
173
 
174
+
175
+ $( '.submit button' ).on( 'click', function() {
176
+ if (
177
+ $( 'select#woocommerce_allowed_countries' ).val() === 'specific' &&
178
+ ! $( '[name="woocommerce_specific_allowed_countries[]"]' ).val()
179
+ ) {
180
+ if ( window.confirm( woocommerce_settings_params.i18n_no_specific_countries_selected ) ) {
181
+ return true;
182
+ }
183
+ return false;
184
+ }
185
+ } );
186
+
187
  });
188
  })( jQuery, woocommerce_settings_params, wp );
assets/js/admin/settings.min.js CHANGED
@@ -1 +1 @@
1
- !function(c,r,a){c(function(){c("select#woocommerce_allowed_countries").change(function(){"specific"===c(this).val()?(c(this).closest("tr").next("tr").hide(),c(this).closest("tr").next().next("tr").show()):("all_except"===c(this).val()?c(this).closest("tr").next("tr").show():c(this).closest("tr").next("tr").hide(),c(this).closest("tr").next().next("tr").hide())}).change(),c("select#woocommerce_ship_to_countries").change(function(){"specific"===c(this).val()?c(this).closest("tr").next("tr").show():c(this).closest("tr").next("tr").hide()}).change(),c("input#woocommerce_manage_stock").change(function(){c(this).is(":checked")?c(this).closest("tbody").find(".manage_stock_field").closest("tr").show():c(this).closest("tbody").find(".manage_stock_field").closest("tr").hide()}).change(),c(".colorpick").iris({change:function(t,e){c(this).parent().find(".colorpickpreview").css({backgroundColor:e.color.toString()})},hide:!0,border:!0}).on("click focus",function(t){t.stopPropagation(),c(".iris-picker").hide(),c(this).closest("td").find(".iris-picker").show(),c(this).data("original-value",c(this).val())}).on("change",function(){c(this).is(".iris-error")&&(c(this).data("original-value").match(/^\#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$/)?c(this).val(c(this).data("original-value")).change():c(this).val("").change())}),c("body").on("click",function(){c(".iris-picker").hide()}),c(function(){var t=!1;c("input, textarea, select, checkbox").change(function(){t=!0}),c(".woo-nav-tab-wrapper a").click(function(){window.onbeforeunload=t?function(){return r.i18n_nav_warning}:""}),c(".submit :input").click(function(){window.onbeforeunload=""})}),c("table.wc_gateways tbody, table.wc_shipping tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td.sort",scrollSensitivity:40,helper:function(t,e){return e.children().each(function(){c(this).width(c(this).width())}),e.css("left","0"),e},start:function(t,e){e.item.css("background-color","#f6f6f6")},stop:function(t,e){e.item.removeAttr("style"),e.item.trigger("updateMoveButtons")}}),c(".woocommerce").on("click",".select_all",function(){return c(this).closest("td").find("select option").attr("selected","selected"),c(this).closest("td").find("select").trigger("change"),!1}),c(".woocommerce").on("click",".select_none",function(){return c(this).closest("td").find("select option").removeAttr("selected"),c(this).closest("td").find("select").trigger("change"),!1}),c(".wc-item-reorder-nav").find(".wc-move-up, .wc-move-down").on("click",function(){var t=c(this),e=t.closest("tr");t.focus();var i=t.is(".wc-move-up"),o=t.is(".wc-move-down");if(i){var n=e.prev("tr");n&&n.length&&(n.before(e),a.a11y.speak(r.i18n_moved_up))}else if(o){var s=e.next("tr");s&&s.length&&(s.after(e),a.a11y.speak(r.i18n_moved_down))}t.focus(),t.closest("table").trigger("updateMoveButtons")}),c(".wc-item-reorder-nav").closest("table").on("updateMoveButtons",function(){var t=c(this),e=c(this).find("tbody tr:last"),i=c(this).find("tbody tr:first");t.find(".wc-item-reorder-nav .wc-move-disabled").removeClass("wc-move-disabled").attr({tabindex:"0","aria-hidden":"false"}),i.find(".wc-item-reorder-nav .wc-move-up").addClass("wc-move-disabled").attr({tabindex:"-1","aria-hidden":"true"}),e.find(".wc-item-reorder-nav .wc-move-down").addClass("wc-move-disabled").attr({tabindex:"-1","aria-hidden":"true"})}),c(".wc-item-reorder-nav").closest("table").trigger("updateMoveButtons")})}(jQuery,woocommerce_settings_params,wp);
1
+ !function(s,r,a){s(function(){s("select#woocommerce_allowed_countries").change(function(){"specific"===s(this).val()?(s(this).closest("tr").next("tr").hide(),s(this).closest("tr").next().next("tr").show()):("all_except"===s(this).val()?s(this).closest("tr").next("tr").show():s(this).closest("tr").next("tr").hide(),s(this).closest("tr").next().next("tr").hide())}).change(),s("select#woocommerce_ship_to_countries").change(function(){"specific"===s(this).val()?s(this).closest("tr").next("tr").show():s(this).closest("tr").next("tr").hide()}).change(),s("input#woocommerce_manage_stock").change(function(){s(this).is(":checked")?s(this).closest("tbody").find(".manage_stock_field").closest("tr").show():s(this).closest("tbody").find(".manage_stock_field").closest("tr").hide()}).change(),s(".colorpick").iris({change:function(e,t){s(this).parent().find(".colorpickpreview").css({backgroundColor:t.color.toString()})},hide:!0,border:!0}).on("click focus",function(e){e.stopPropagation(),s(".iris-picker").hide(),s(this).closest("td").find(".iris-picker").show(),s(this).data("original-value",s(this).val())}).on("change",function(){s(this).is(".iris-error")&&(s(this).data("original-value").match(/^\#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$/)?s(this).val(s(this).data("original-value")).change():s(this).val("").change())}),s("body").on("click",function(){s(".iris-picker").hide()}),s(function(){var e=!1;s("input, textarea, select, checkbox").change(function(){e=!0}),s(".woo-nav-tab-wrapper a").click(function(){window.onbeforeunload=e?function(){return r.i18n_nav_warning}:""}),s(".submit :input").click(function(){window.onbeforeunload=""})}),s("table.wc_gateways tbody, table.wc_shipping tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td.sort",scrollSensitivity:40,helper:function(e,t){return t.children().each(function(){s(this).width(s(this).width())}),t.css("left","0"),t},start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style"),t.item.trigger("updateMoveButtons")}}),s(".woocommerce").on("click",".select_all",function(){return s(this).closest("td").find("select option").attr("selected","selected"),s(this).closest("td").find("select").trigger("change"),!1}),s(".woocommerce").on("click",".select_none",function(){return s(this).closest("td").find("select option").removeAttr("selected"),s(this).closest("td").find("select").trigger("change"),!1}),s(".wc-item-reorder-nav").find(".wc-move-up, .wc-move-down").on("click",function(){var e=s(this),t=e.closest("tr");e.focus();var i=e.is(".wc-move-up"),o=e.is(".wc-move-down");if(i){var c=t.prev("tr");c&&c.length&&(c.before(t),a.a11y.speak(r.i18n_moved_up))}else if(o){var n=t.next("tr");n&&n.length&&(n.after(t),a.a11y.speak(r.i18n_moved_down))}e.focus(),e.closest("table").trigger("updateMoveButtons")}),s(".wc-item-reorder-nav").closest("table").on("updateMoveButtons",function(){var e=s(this),t=s(this).find("tbody tr:last"),i=s(this).find("tbody tr:first");e.find(".wc-item-reorder-nav .wc-move-disabled").removeClass("wc-move-disabled").attr({tabindex:"0","aria-hidden":"false"}),i.find(".wc-item-reorder-nav .wc-move-up").addClass("wc-move-disabled").attr({tabindex:"-1","aria-hidden":"true"}),t.find(".wc-item-reorder-nav .wc-move-down").addClass("wc-move-disabled").attr({tabindex:"-1","aria-hidden":"true"})}),s(".wc-item-reorder-nav").closest("table").trigger("updateMoveButtons"),s(".submit button").on("click",function(){if("specific"===s("select#woocommerce_allowed_countries").val()&&!s('[name="woocommerce_specific_allowed_countries[]"]').val())return!!window.confirm(woocommerce_settings_params.i18n_no_specific_countries_selected)})})}(jQuery,woocommerce_settings_params,wp);
i18n/languages/woocommerce.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the WooCommerce package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce 3.6.2\n"
6
  "Report-Msgid-Bugs-To: https://github.com/woocommerce/woocommerce/issues\n"
7
- "POT-Creation-Date: 2019-04-24 17:19:20+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -1530,7 +1530,7 @@ msgid "Lovech"
1530
  msgstr ""
1531
 
1532
  #: i18n/states/BG.php:22 i18n/states/US.php:40 i18n/states.php:151
1533
- #: i18n/states.php:1306
1534
  msgid "Montana"
1535
  msgstr ""
1536
 
@@ -3541,7 +3541,7 @@ msgid "Margibi"
3541
  msgstr ""
3542
 
3543
  #: i18n/states/LR.php:23 i18n/states/US.php:34 i18n/states.php:711
3544
- #: i18n/states.php:1300
3545
  msgid "Maryland"
3546
  msgstr ""
3547
 
@@ -4850,755 +4850,755 @@ msgstr ""
4850
  msgid "Vrancea"
4851
  msgstr ""
4852
 
4853
- #: i18n/states/TH.php:14 i18n/states.php:1084
4854
  msgid "Amnat Charoen"
4855
  msgstr ""
4856
 
4857
- #: i18n/states/TH.php:15 i18n/states.php:1085
4858
  msgid "Ang Thong"
4859
  msgstr ""
4860
 
4861
- #: i18n/states/TH.php:16 i18n/states.php:1086
4862
  msgid "Ayutthaya"
4863
  msgstr ""
4864
 
4865
- #: i18n/states/TH.php:17 i18n/states.php:1087
4866
  msgid "Bangkok"
4867
  msgstr ""
4868
 
4869
- #: i18n/states/TH.php:18 i18n/states.php:1088
4870
  msgid "Bueng Kan"
4871
  msgstr ""
4872
 
4873
- #: i18n/states/TH.php:19 i18n/states.php:1089
4874
  msgid "Buri Ram"
4875
  msgstr ""
4876
 
4877
- #: i18n/states/TH.php:20 i18n/states.php:1090
4878
  msgid "Chachoengsao"
4879
  msgstr ""
4880
 
4881
- #: i18n/states/TH.php:21 i18n/states.php:1091
4882
  msgid "Chai Nat"
4883
  msgstr ""
4884
 
4885
- #: i18n/states/TH.php:22 i18n/states.php:1092
4886
  msgid "Chaiyaphum"
4887
  msgstr ""
4888
 
4889
- #: i18n/states/TH.php:23 i18n/states.php:1093
4890
  msgid "Chanthaburi"
4891
  msgstr ""
4892
 
4893
- #: i18n/states/TH.php:24 i18n/states.php:1094
4894
  msgid "Chiang Mai"
4895
  msgstr ""
4896
 
4897
- #: i18n/states/TH.php:25 i18n/states.php:1095
4898
  msgid "Chiang Rai"
4899
  msgstr ""
4900
 
4901
- #: i18n/states/TH.php:26 i18n/states.php:1096
4902
  msgid "Chonburi"
4903
  msgstr ""
4904
 
4905
- #: i18n/states/TH.php:27 i18n/states.php:1097
4906
  msgid "Chumphon"
4907
  msgstr ""
4908
 
4909
- #: i18n/states/TH.php:28 i18n/states.php:1098
4910
  msgid "Kalasin"
4911
  msgstr ""
4912
 
4913
- #: i18n/states/TH.php:29 i18n/states.php:1099
4914
  msgid "Kamphaeng Phet"
4915
  msgstr ""
4916
 
4917
- #: i18n/states/TH.php:30 i18n/states.php:1100
4918
  msgid "Kanchanaburi"
4919
  msgstr ""
4920
 
4921
- #: i18n/states/TH.php:31 i18n/states.php:1101
4922
  msgid "Khon Kaen"
4923
  msgstr ""
4924
 
4925
- #: i18n/states/TH.php:32 i18n/states.php:1102
4926
  msgid "Krabi"
4927
  msgstr ""
4928
 
4929
- #: i18n/states/TH.php:33 i18n/states.php:1103
4930
  msgid "Lampang"
4931
  msgstr ""
4932
 
4933
- #: i18n/states/TH.php:34 i18n/states.php:1104
4934
  msgid "Lamphun"
4935
  msgstr ""
4936
 
4937
- #: i18n/states/TH.php:35 i18n/states.php:1105
4938
  msgid "Loei"
4939
  msgstr ""
4940
 
4941
- #: i18n/states/TH.php:36 i18n/states.php:1106
4942
  msgid "Lopburi"
4943
  msgstr ""
4944
 
4945
- #: i18n/states/TH.php:37 i18n/states.php:1107
4946
  msgid "Mae Hong Son"
4947
  msgstr ""
4948
 
4949
- #: i18n/states/TH.php:38 i18n/states.php:1108
4950
  msgid "Maha Sarakham"
4951
  msgstr ""
4952
 
4953
- #: i18n/states/TH.php:39 i18n/states.php:1109
4954
  msgid "Mukdahan"
4955
  msgstr ""
4956
 
4957
- #: i18n/states/TH.php:40 i18n/states.php:1110
4958
  msgid "Nakhon Nayok"
4959
  msgstr ""
4960
 
4961
- #: i18n/states/TH.php:41 i18n/states.php:1111
4962
  msgid "Nakhon Pathom"
4963
  msgstr ""
4964
 
4965
- #: i18n/states/TH.php:42 i18n/states.php:1112
4966
  msgid "Nakhon Phanom"
4967
  msgstr ""
4968
 
4969
- #: i18n/states/TH.php:43 i18n/states.php:1113
4970
  msgid "Nakhon Ratchasima"
4971
  msgstr ""
4972
 
4973
- #: i18n/states/TH.php:44 i18n/states.php:1114
4974
  msgid "Nakhon Sawan"
4975
  msgstr ""
4976
 
4977
- #: i18n/states/TH.php:45 i18n/states.php:1115
4978
  msgid "Nakhon Si Thammarat"
4979
  msgstr ""
4980
 
4981
- #: i18n/states/TH.php:46 i18n/states.php:1116
4982
  msgid "Nan"
4983
  msgstr ""
4984
 
4985
- #: i18n/states/TH.php:47 i18n/states.php:1117
4986
  msgid "Narathiwat"
4987
  msgstr ""
4988
 
4989
- #: i18n/states/TH.php:48 i18n/states.php:1118
4990
  msgid "Nong Bua Lam Phu"
4991
  msgstr ""
4992
 
4993
- #: i18n/states/TH.php:49 i18n/states.php:1119
4994
  msgid "Nong Khai"
4995
  msgstr ""
4996
 
4997
- #: i18n/states/TH.php:50 i18n/states.php:1120
4998
  msgid "Nonthaburi"
4999
  msgstr ""
5000
 
5001
- #: i18n/states/TH.php:51 i18n/states.php:1121
5002
  msgid "Pathum Thani"
5003
  msgstr ""
5004
 
5005
- #: i18n/states/TH.php:52 i18n/states.php:1122
5006
  msgid "Pattani"
5007
  msgstr ""
5008
 
5009
- #: i18n/states/TH.php:53 i18n/states.php:1123
5010
  msgid "Phang Nga"
5011
  msgstr ""
5012
 
5013
- #: i18n/states/TH.php:54 i18n/states.php:1124
5014
  msgid "Phatthalung"
5015
  msgstr ""
5016
 
5017
- #: i18n/states/TH.php:55 i18n/states.php:1125
5018
  msgid "Phayao"
5019
  msgstr ""
5020
 
5021
- #: i18n/states/TH.php:56 i18n/states.php:1126
5022
  msgid "Phetchabun"
5023
  msgstr ""
5024
 
5025
- #: i18n/states/TH.php:57 i18n/states.php:1127
5026
  msgid "Phetchaburi"
5027
  msgstr ""
5028
 
5029
- #: i18n/states/TH.php:58 i18n/states.php:1128
5030
  msgid "Phichit"
5031
  msgstr ""
5032
 
5033
- #: i18n/states/TH.php:59 i18n/states.php:1129
5034
  msgid "Phitsanulok"
5035
  msgstr ""
5036
 
5037
- #: i18n/states/TH.php:60 i18n/states.php:1130
5038
  msgid "Phrae"
5039
  msgstr ""
5040
 
5041
- #: i18n/states/TH.php:61 i18n/states.php:1131
5042
  msgid "Phuket"
5043
  msgstr ""
5044
 
5045
- #: i18n/states/TH.php:62 i18n/states.php:1132
5046
  msgid "Prachin Buri"
5047
  msgstr ""
5048
 
5049
- #: i18n/states/TH.php:63 i18n/states.php:1133
5050
  msgid "Prachuap Khiri Khan"
5051
  msgstr ""
5052
 
5053
- #: i18n/states/TH.php:64 i18n/states.php:1134
5054
  msgid "Ranong"
5055
  msgstr ""
5056
 
5057
- #: i18n/states/TH.php:65 i18n/states.php:1135
5058
  msgid "Ratchaburi"
5059
  msgstr ""
5060
 
5061
- #: i18n/states/TH.php:66 i18n/states.php:1136
5062
  msgid "Rayong"
5063
  msgstr ""
5064
 
5065
- #: i18n/states/TH.php:67 i18n/states.php:1137
5066
  msgid "Roi Et"
5067
  msgstr ""
5068
 
5069
- #: i18n/states/TH.php:68 i18n/states.php:1138
5070
  msgid "Sa Kaeo"
5071
  msgstr ""
5072
 
5073
- #: i18n/states/TH.php:69 i18n/states.php:1139
5074
  msgid "Sakon Nakhon"
5075
  msgstr ""
5076
 
5077
- #: i18n/states/TH.php:70 i18n/states.php:1140
5078
  msgid "Samut Prakan"
5079
  msgstr ""
5080
 
5081
- #: i18n/states/TH.php:71 i18n/states.php:1141
5082
  msgid "Samut Sakhon"
5083
  msgstr ""
5084
 
5085
- #: i18n/states/TH.php:72 i18n/states.php:1142
5086
  msgid "Samut Songkhram"
5087
  msgstr ""
5088
 
5089
- #: i18n/states/TH.php:73 i18n/states.php:1143
5090
  msgid "Saraburi"
5091
  msgstr ""
5092
 
5093
- #: i18n/states/TH.php:74 i18n/states.php:1144
5094
  msgid "Satun"
5095
  msgstr ""
5096
 
5097
- #: i18n/states/TH.php:75 i18n/states.php:1145
5098
  msgid "Sing Buri"
5099
  msgstr ""
5100
 
5101
- #: i18n/states/TH.php:76 i18n/states.php:1146
5102
  msgid "Sisaket"
5103
  msgstr ""
5104
 
5105
- #: i18n/states/TH.php:77 i18n/states.php:1147
5106
  msgid "Songkhla"
5107
  msgstr ""
5108
 
5109
- #: i18n/states/TH.php:78 i18n/states.php:1148
5110
  msgid "Sukhothai"
5111
  msgstr ""
5112
 
5113
- #: i18n/states/TH.php:79 i18n/states.php:1149
5114
  msgid "Suphan Buri"
5115
  msgstr ""
5116
 
5117
- #: i18n/states/TH.php:80 i18n/states.php:1150
5118
  msgid "Surat Thani"
5119
  msgstr ""
5120
 
5121
- #: i18n/states/TH.php:81 i18n/states.php:1151
5122
  msgid "Surin"
5123
  msgstr ""
5124
 
5125
- #: i18n/states/TH.php:82 i18n/states.php:1152
5126
  msgid "Tak"
5127
  msgstr ""
5128
 
5129
- #: i18n/states/TH.php:83 i18n/states.php:1153
5130
  msgid "Trang"
5131
  msgstr ""
5132
 
5133
- #: i18n/states/TH.php:84 i18n/states.php:1154
5134
  msgid "Trat"
5135
  msgstr ""
5136
 
5137
- #: i18n/states/TH.php:85 i18n/states.php:1155
5138
  msgid "Ubon Ratchathani"
5139
  msgstr ""
5140
 
5141
- #: i18n/states/TH.php:86 i18n/states.php:1156
5142
  msgid "Udon Thani"
5143
  msgstr ""
5144
 
5145
- #: i18n/states/TH.php:87 i18n/states.php:1157
5146
  msgid "Uthai Thani"
5147
  msgstr ""
5148
 
5149
- #: i18n/states/TH.php:88 i18n/states.php:1158
5150
  msgid "Uttaradit"
5151
  msgstr ""
5152
 
5153
- #: i18n/states/TH.php:89 i18n/states.php:1159
5154
  msgid "Yala"
5155
  msgstr ""
5156
 
5157
- #: i18n/states/TH.php:90 i18n/states.php:1160
5158
  msgid "Yasothon"
5159
  msgstr ""
5160
 
5161
- #: i18n/states/TR.php:14 i18n/states.php:1163
5162
  msgid "Adana"
5163
  msgstr ""
5164
 
5165
- #: i18n/states/TR.php:15 i18n/states.php:1164
5166
  msgid "Ad&#305;yaman"
5167
  msgstr ""
5168
 
5169
- #: i18n/states/TR.php:16 i18n/states.php:1165
5170
  msgid "Afyon"
5171
  msgstr ""
5172
 
5173
- #: i18n/states/TR.php:17 i18n/states.php:1166
5174
  msgid "A&#287;r&#305;"
5175
  msgstr ""
5176
 
5177
- #: i18n/states/TR.php:18 i18n/states.php:1167
5178
  msgid "Amasya"
5179
  msgstr ""
5180
 
5181
- #: i18n/states/TR.php:19 i18n/states.php:1168
5182
  msgid "Ankara"
5183
  msgstr ""
5184
 
5185
- #: i18n/states/TR.php:20 i18n/states.php:1169
5186
  msgid "Antalya"
5187
  msgstr ""
5188
 
5189
- #: i18n/states/TR.php:21 i18n/states.php:1170
5190
  msgid "Artvin"
5191
  msgstr ""
5192
 
5193
- #: i18n/states/TR.php:22 i18n/states.php:1171
5194
  msgid "Ayd&#305;n"
5195
  msgstr ""
5196
 
5197
- #: i18n/states/TR.php:23 i18n/states.php:1172
5198
  msgid "Bal&#305;kesir"
5199
  msgstr ""
5200
 
5201
- #: i18n/states/TR.php:24 i18n/states.php:1173
5202
  msgid "Bilecik"
5203
  msgstr ""
5204
 
5205
- #: i18n/states/TR.php:25 i18n/states.php:1174
5206
  msgid "Bing&#246;l"
5207
  msgstr ""
5208
 
5209
- #: i18n/states/TR.php:26 i18n/states.php:1175
5210
  msgid "Bitlis"
5211
  msgstr ""
5212
 
5213
- #: i18n/states/TR.php:27 i18n/states.php:1176
5214
  msgid "Bolu"
5215
  msgstr ""
5216
 
5217
- #: i18n/states/TR.php:28 i18n/states.php:1177
5218
  msgid "Burdur"
5219
  msgstr ""
5220
 
5221
- #: i18n/states/TR.php:29 i18n/states.php:1178
5222
  msgid "Bursa"
5223
  msgstr ""
5224
 
5225
- #: i18n/states/TR.php:30 i18n/states.php:1179
5226
  msgid "&#199;anakkale"
5227
  msgstr ""
5228
 
5229
- #: i18n/states/TR.php:31 i18n/states.php:1180
5230
  msgid "&#199;ank&#305;r&#305;"
5231
  msgstr ""
5232
 
5233
- #: i18n/states/TR.php:32 i18n/states.php:1181
5234
  msgid "&#199;orum"
5235
  msgstr ""
5236
 
5237
- #: i18n/states/TR.php:33 i18n/states.php:1182
5238
  msgid "Denizli"
5239
  msgstr ""
5240
 
5241
- #: i18n/states/TR.php:34 i18n/states.php:1183
5242
  msgid "Diyarbak&#305;r"
5243
  msgstr ""
5244
 
5245
- #: i18n/states/TR.php:35 i18n/states.php:1184
5246
  msgid "Edirne"
5247
  msgstr ""
5248
 
5249
- #: i18n/states/TR.php:36 i18n/states.php:1185
5250
  msgid "Elaz&#305;&#287;"
5251
  msgstr ""
5252
 
5253
- #: i18n/states/TR.php:37 i18n/states.php:1186
5254
  msgid "Erzincan"
5255
  msgstr ""
5256
 
5257
- #: i18n/states/TR.php:38 i18n/states.php:1187
5258
  msgid "Erzurum"
5259
  msgstr ""
5260
 
5261
- #: i18n/states/TR.php:39 i18n/states.php:1188
5262
  msgid "Eski&#351;ehir"
5263
  msgstr ""
5264
 
5265
- #: i18n/states/TR.php:40 i18n/states.php:1189
5266
  msgid "Gaziantep"
5267
  msgstr ""
5268
 
5269
- #: i18n/states/TR.php:41 i18n/states.php:1190
5270
  msgid "Giresun"
5271
  msgstr ""
5272
 
5273
- #: i18n/states/TR.php:42 i18n/states.php:1191
5274
  msgid "G&#252;m&#252;&#351;hane"
5275
  msgstr ""
5276
 
5277
- #: i18n/states/TR.php:43 i18n/states.php:1192
5278
  msgid "Hakkari"
5279
  msgstr ""
5280
 
5281
- #: i18n/states/TR.php:44 i18n/states.php:1193
5282
  msgid "Hatay"
5283
  msgstr ""
5284
 
5285
- #: i18n/states/TR.php:45 i18n/states.php:1194
5286
  msgid "Isparta"
5287
  msgstr ""
5288
 
5289
- #: i18n/states/TR.php:46 i18n/states.php:1195
5290
  msgid "&#304;&#231;el"
5291
  msgstr ""
5292
 
5293
- #: i18n/states/TR.php:47 i18n/states.php:1196
5294
  msgid "&#304;stanbul"
5295
  msgstr ""
5296
 
5297
- #: i18n/states/TR.php:48 i18n/states.php:1197
5298
  msgid "&#304;zmir"
5299
  msgstr ""
5300
 
5301
- #: i18n/states/TR.php:49 i18n/states.php:1198
5302
  msgid "Kars"
5303
  msgstr ""
5304
 
5305
- #: i18n/states/TR.php:50 i18n/states.php:1199
5306
  msgid "Kastamonu"
5307
  msgstr ""
5308
 
5309
- #: i18n/states/TR.php:51 i18n/states.php:1200
5310
  msgid "Kayseri"
5311
  msgstr ""
5312
 
5313
- #: i18n/states/TR.php:52 i18n/states.php:1201
5314
  msgid "K&#305;rklareli"
5315
  msgstr ""
5316
 
5317
- #: i18n/states/TR.php:53 i18n/states.php:1202
5318
  msgid "K&#305;r&#351;ehir"
5319
  msgstr ""
5320
 
5321
- #: i18n/states/TR.php:54 i18n/states.php:1203
5322
  msgid "Kocaeli"
5323
  msgstr ""
5324
 
5325
- #: i18n/states/TR.php:55 i18n/states.php:1204
5326
  msgid "Konya"
5327
  msgstr ""
5328
 
5329
- #: i18n/states/TR.php:56 i18n/states.php:1205
5330
  msgid "K&#252;tahya"
5331
  msgstr ""
5332
 
5333
- #: i18n/states/TR.php:57 i18n/states.php:1206
5334
  msgid "Malatya"
5335
  msgstr ""
5336
 
5337
- #: i18n/states/TR.php:58 i18n/states.php:1207
5338
  msgid "Manisa"
5339
  msgstr ""
5340
 
5341
- #: i18n/states/TR.php:59 i18n/states.php:1208
5342
  msgid "Kahramanmara&#351;"
5343
  msgstr ""
5344
 
5345
- #: i18n/states/TR.php:60 i18n/states.php:1209
5346
  msgid "Mardin"
5347
  msgstr ""
5348
 
5349
- #: i18n/states/TR.php:61 i18n/states.php:1210
5350
  msgid "Mu&#287;la"
5351
  msgstr ""
5352
 
5353
- #: i18n/states/TR.php:62 i18n/states.php:1211
5354
  msgid "Mu&#351;"
5355
  msgstr ""
5356
 
5357
- #: i18n/states/TR.php:63 i18n/states.php:1212
5358
  msgid "Nev&#351;ehir"
5359
  msgstr ""
5360
 
5361
- #: i18n/states/TR.php:64 i18n/states.php:1213
5362
  msgid "Ni&#287;de"
5363
  msgstr ""
5364
 
5365
- #: i18n/states/TR.php:65 i18n/states.php:1214
5366
  msgid "Ordu"
5367
  msgstr ""
5368
 
5369
- #: i18n/states/TR.php:66 i18n/states.php:1215
5370
  msgid "Rize"
5371
  msgstr ""
5372
 
5373
- #: i18n/states/TR.php:67 i18n/states.php:1216
5374
  msgid "Sakarya"
5375
  msgstr ""
5376
 
5377
- #: i18n/states/TR.php:68 i18n/states.php:1217
5378
  msgid "Samsun"
5379
  msgstr ""
5380
 
5381
- #: i18n/states/TR.php:69 i18n/states.php:1218
5382
  msgid "Siirt"
5383
  msgstr ""
5384
 
5385
- #: i18n/states/TR.php:70 i18n/states.php:1219
5386
  msgid "Sinop"
5387
  msgstr ""
5388
 
5389
- #: i18n/states/TR.php:71 i18n/states.php:1220
5390
  msgid "Sivas"
5391
  msgstr ""
5392
 
5393
- #: i18n/states/TR.php:72 i18n/states.php:1221
5394
  msgid "Tekirda&#287;"
5395
  msgstr ""
5396
 
5397
- #: i18n/states/TR.php:73 i18n/states.php:1222
5398
  msgid "Tokat"
5399
  msgstr ""
5400
 
5401
- #: i18n/states/TR.php:74 i18n/states.php:1223
5402
  msgid "Trabzon"
5403
  msgstr ""
5404
 
5405
- #: i18n/states/TR.php:75 i18n/states.php:1224
5406
  msgid "Tunceli"
5407
  msgstr ""
5408
 
5409
- #: i18n/states/TR.php:76 i18n/states.php:1225
5410
  msgid "&#350;anl&#305;urfa"
5411
  msgstr ""
5412
 
5413
- #: i18n/states/TR.php:77 i18n/states.php:1226
5414
  msgid "U&#351;ak"
5415
  msgstr ""
5416
 
5417
- #: i18n/states/TR.php:78 i18n/states.php:1227
5418
  msgid "Van"
5419
  msgstr ""
5420
 
5421
- #: i18n/states/TR.php:79 i18n/states.php:1228
5422
  msgid "Yozgat"
5423
  msgstr ""
5424
 
5425
- #: i18n/states/TR.php:80 i18n/states.php:1229
5426
  msgid "Zonguldak"
5427
  msgstr ""
5428
 
5429
- #: i18n/states/TR.php:81 i18n/states.php:1230
5430
  msgid "Aksaray"
5431
  msgstr ""
5432
 
5433
- #: i18n/states/TR.php:82 i18n/states.php:1231
5434
  msgid "Bayburt"
5435
  msgstr ""
5436
 
5437
- #: i18n/states/TR.php:83 i18n/states.php:1232
5438
  msgid "Karaman"
5439
  msgstr ""
5440
 
5441
- #: i18n/states/TR.php:84 i18n/states.php:1233
5442
  msgid "K&#305;r&#305;kkale"
5443
  msgstr ""
5444
 
5445
- #: i18n/states/TR.php:85 i18n/states.php:1234
5446
  msgid "Batman"
5447
  msgstr ""
5448
 
5449
- #: i18n/states/TR.php:86 i18n/states.php:1235
5450
  msgid "&#350;&#305;rnak"
5451
  msgstr ""
5452
 
5453
- #: i18n/states/TR.php:87 i18n/states.php:1236
5454
  msgid "Bart&#305;n"
5455
  msgstr ""
5456
 
5457
- #: i18n/states/TR.php:88 i18n/states.php:1237
5458
  msgid "Ardahan"
5459
  msgstr ""
5460
 
5461
- #: i18n/states/TR.php:89 i18n/states.php:1238
5462
  msgid "I&#287;d&#305;r"
5463
  msgstr ""
5464
 
5465
- #: i18n/states/TR.php:90 i18n/states.php:1239
5466
  msgid "Yalova"
5467
  msgstr ""
5468
 
5469
- #: i18n/states/TR.php:91 i18n/states.php:1240
5470
  msgid "Karab&#252;k"
5471
  msgstr ""
5472
 
5473
- #: i18n/states/TR.php:92 i18n/states.php:1241
5474
  msgid "Kilis"
5475
  msgstr ""
5476
 
5477
- #: i18n/states/TR.php:93 i18n/states.php:1242
5478
  msgid "Osmaniye"
5479
  msgstr ""
5480
 
5481
- #: i18n/states/TR.php:94 i18n/states.php:1243
5482
  msgid "D&#252;zce"
5483
  msgstr ""
5484
 
5485
- #: i18n/states/TZ.php:14 i18n/states.php:1246
5486
  msgid "Arusha"
5487
  msgstr ""
5488
 
5489
- #: i18n/states/TZ.php:15 i18n/states.php:1247
5490
  msgid "Dar es Salaam"
5491
  msgstr ""
5492
 
5493
- #: i18n/states/TZ.php:16 i18n/states.php:1248
5494
  msgid "Dodoma"
5495
  msgstr ""
5496
 
5497
- #: i18n/states/TZ.php:17 i18n/states.php:1249
5498
  msgid "Iringa"
5499
  msgstr ""
5500
 
5501
- #: i18n/states/TZ.php:18 i18n/states.php:1250
5502
  msgid "Kagera"
5503
  msgstr ""
5504
 
5505
- #: i18n/states/TZ.php:19 i18n/states.php:1251
5506
  msgid "Pemba North"
5507
  msgstr ""
5508
 
5509
- #: i18n/states/TZ.php:20 i18n/states.php:1252
5510
  msgid "Zanzibar North"
5511
  msgstr ""
5512
 
5513
- #: i18n/states/TZ.php:21 i18n/states.php:1253
5514
  msgid "Kigoma"
5515
  msgstr ""
5516
 
5517
- #: i18n/states/TZ.php:22 i18n/states.php:1254
5518
  msgid "Kilimanjaro"
5519
  msgstr ""
5520
 
5521
- #: i18n/states/TZ.php:23 i18n/states.php:1255
5522
  msgid "Pemba South"
5523
  msgstr ""
5524
 
5525
- #: i18n/states/TZ.php:24 i18n/states.php:1256
5526
  msgid "Zanzibar South"
5527
  msgstr ""
5528
 
5529
- #: i18n/states/TZ.php:25 i18n/states.php:1257
5530
  msgid "Lindi"
5531
  msgstr ""
5532
 
5533
- #: i18n/states/TZ.php:26 i18n/states.php:1258
5534
  msgid "Mara"
5535
  msgstr ""
5536
 
5537
- #: i18n/states/TZ.php:27 i18n/states.php:1259
5538
  msgid "Mbeya"
5539
  msgstr ""
5540
 
5541
- #: i18n/states/TZ.php:28 i18n/states.php:1260
5542
  msgid "Zanzibar West"
5543
  msgstr ""
5544
 
5545
- #: i18n/states/TZ.php:29 i18n/states.php:1261
5546
  msgid "Morogoro"
5547
  msgstr ""
5548
 
5549
- #: i18n/states/TZ.php:30 i18n/states.php:1262
5550
  msgid "Mtwara"
5551
  msgstr ""
5552
 
5553
- #: i18n/states/TZ.php:31 i18n/states.php:1263
5554
  msgid "Mwanza"
5555
  msgstr ""
5556
 
5557
- #: i18n/states/TZ.php:32 i18n/states.php:1264
5558
  msgid "Coast"
5559
  msgstr ""
5560
 
5561
- #: i18n/states/TZ.php:33 i18n/states.php:1265
5562
  msgid "Rukwa"
5563
  msgstr ""
5564
 
5565
- #: i18n/states/TZ.php:34 i18n/states.php:1266
5566
  msgid "Ruvuma"
5567
  msgstr ""
5568
 
5569
- #: i18n/states/TZ.php:35 i18n/states.php:1267
5570
  msgid "Shinyanga"
5571
  msgstr ""
5572
 
5573
- #: i18n/states/TZ.php:36 i18n/states.php:1268
5574
  msgid "Singida"
5575
  msgstr ""
5576
 
5577
- #: i18n/states/TZ.php:37 i18n/states.php:1269
5578
  msgid "Tabora"
5579
  msgstr ""
5580
 
5581
- #: i18n/states/TZ.php:38 i18n/states.php:1270
5582
  msgid "Tanga"
5583
  msgstr ""
5584
 
5585
- #: i18n/states/TZ.php:39 i18n/states.php:1271
5586
  msgid "Manyara"
5587
  msgstr ""
5588
 
5589
- #: i18n/states/TZ.php:40 i18n/states.php:1272
5590
  msgid "Geita"
5591
  msgstr ""
5592
 
5593
- #: i18n/states/TZ.php:41 i18n/states.php:1273
5594
  msgid "Katavi"
5595
  msgstr ""
5596
 
5597
- #: i18n/states/TZ.php:42 i18n/states.php:1274
5598
  msgid "Njombe"
5599
  msgstr ""
5600
 
5601
- #: i18n/states/TZ.php:43 i18n/states.php:1275
5602
  msgid "Simiyu"
5603
  msgstr ""
5604
 
@@ -5638,243 +5638,243 @@ msgstr ""
5638
  msgid "Wake Island"
5639
  msgstr ""
5640
 
5641
- #: i18n/states/US.php:14 i18n/states.php:1280
5642
  msgid "Alabama"
5643
  msgstr ""
5644
 
5645
- #: i18n/states/US.php:15 i18n/states.php:1281
5646
  msgid "Alaska"
5647
  msgstr ""
5648
 
5649
- #: i18n/states/US.php:16 i18n/states.php:1282
5650
  msgid "Arizona"
5651
  msgstr ""
5652
 
5653
- #: i18n/states/US.php:17 i18n/states.php:1283
5654
  msgid "Arkansas"
5655
  msgstr ""
5656
 
5657
- #: i18n/states/US.php:18 i18n/states.php:1284
5658
  msgid "California"
5659
  msgstr ""
5660
 
5661
- #: i18n/states/US.php:19 i18n/states.php:1285
5662
  msgid "Colorado"
5663
  msgstr ""
5664
 
5665
- #: i18n/states/US.php:20 i18n/states.php:1286
5666
  msgid "Connecticut"
5667
  msgstr ""
5668
 
5669
- #: i18n/states/US.php:21 i18n/states.php:1287
5670
  msgid "Delaware"
5671
  msgstr ""
5672
 
5673
- #: i18n/states/US.php:22 i18n/states.php:1288
5674
  msgid "District Of Columbia"
5675
  msgstr ""
5676
 
5677
- #: i18n/states/US.php:23 i18n/states.php:1289
5678
  msgid "Florida"
5679
  msgstr ""
5680
 
5681
- #: i18n/states/US.php:25 i18n/states.php:1291
5682
  msgid "Hawaii"
5683
  msgstr ""
5684
 
5685
- #: i18n/states/US.php:26 i18n/states.php:1292
5686
  msgid "Idaho"
5687
  msgstr ""
5688
 
5689
- #: i18n/states/US.php:27 i18n/states.php:1293
5690
  msgid "Illinois"
5691
  msgstr ""
5692
 
5693
- #: i18n/states/US.php:28 i18n/states.php:1294
5694
  msgid "Indiana"
5695
  msgstr ""
5696
 
5697
- #: i18n/states/US.php:29 i18n/states.php:1295
5698
  msgid "Iowa"
5699
  msgstr ""
5700
 
5701
- #: i18n/states/US.php:30 i18n/states.php:1296
5702
  msgid "Kansas"
5703
  msgstr ""
5704
 
5705
- #: i18n/states/US.php:31 i18n/states.php:1297
5706
  msgid "Kentucky"
5707
  msgstr ""
5708
 
5709
- #: i18n/states/US.php:32 i18n/states.php:1298
5710
  msgid "Louisiana"
5711
  msgstr ""
5712
 
5713
- #: i18n/states/US.php:33 i18n/states.php:1299
5714
  msgid "Maine"
5715
  msgstr ""
5716
 
5717
- #: i18n/states/US.php:35 i18n/states.php:1301
5718
  msgid "Massachusetts"
5719
  msgstr ""
5720
 
5721
- #: i18n/states/US.php:36 i18n/states.php:1302
5722
  msgid "Michigan"
5723
  msgstr ""
5724
 
5725
- #: i18n/states/US.php:37 i18n/states.php:1303
5726
  msgid "Minnesota"
5727
  msgstr ""
5728
 
5729
- #: i18n/states/US.php:38 i18n/states.php:1304
5730
  msgid "Mississippi"
5731
  msgstr ""
5732
 
5733
- #: i18n/states/US.php:39 i18n/states.php:1305
5734
  msgid "Missouri"
5735
  msgstr ""
5736
 
5737
- #: i18n/states/US.php:41 i18n/states.php:1307
5738
  msgid "Nebraska"
5739
  msgstr ""
5740
 
5741
- #: i18n/states/US.php:42 i18n/states.php:1308
5742
  msgid "Nevada"
5743
  msgstr ""
5744
 
5745
- #: i18n/states/US.php:43 i18n/states.php:1309
5746
  msgid "New Hampshire"
5747
  msgstr ""
5748
 
5749
- #: i18n/states/US.php:44 i18n/states.php:1310
5750
  msgid "New Jersey"
5751
  msgstr ""
5752
 
5753
- #: i18n/states/US.php:45 i18n/states.php:1311
5754
  msgid "New Mexico"
5755
  msgstr ""
5756
 
5757
- #: i18n/states/US.php:46 i18n/states.php:1312
5758
  msgid "New York"
5759
  msgstr ""
5760
 
5761
- #: i18n/states/US.php:47 i18n/states.php:1313
5762
  msgid "North Carolina"
5763
  msgstr ""
5764
 
5765
- #: i18n/states/US.php:48 i18n/states.php:1314
5766
  msgid "North Dakota"
5767
  msgstr ""
5768
 
5769
- #: i18n/states/US.php:49 i18n/states.php:1315
5770
  msgid "Ohio"
5771
  msgstr ""
5772
 
5773
- #: i18n/states/US.php:50 i18n/states.php:1316
5774
  msgid "Oklahoma"
5775
  msgstr ""
5776
 
5777
- #: i18n/states/US.php:51 i18n/states.php:1317
5778
  msgid "Oregon"
5779
  msgstr ""
5780
 
5781
- #: i18n/states/US.php:52 i18n/states.php:1318
5782
  msgid "Pennsylvania"
5783
  msgstr ""
5784
 
5785
- #: i18n/states/US.php:53 i18n/states.php:1319
5786
  msgid "Rhode Island"
5787
  msgstr ""
5788
 
5789
- #: i18n/states/US.php:54 i18n/states.php:1320
5790
  msgid "South Carolina"
5791
  msgstr ""
5792
 
5793
- #: i18n/states/US.php:55 i18n/states.php:1321
5794
  msgid "South Dakota"
5795
  msgstr ""
5796
 
5797
- #: i18n/states/US.php:56 i18n/states.php:1322
5798
  msgid "Tennessee"
5799
  msgstr ""
5800
 
5801
- #: i18n/states/US.php:57 i18n/states.php:1323
5802
  msgid "Texas"
5803
  msgstr ""
5804
 
5805
- #: i18n/states/US.php:58 i18n/states.php:1324
5806
  msgid "Utah"
5807
  msgstr ""
5808
 
5809
- #: i18n/states/US.php:59 i18n/states.php:1325
5810
  msgid "Vermont"
5811
  msgstr ""
5812
 
5813
- #: i18n/states/US.php:60 i18n/states.php:1326
5814
  msgid "Virginia"
5815
  msgstr ""
5816
 
5817
- #: i18n/states/US.php:61 i18n/states.php:1327
5818
  msgid "Washington"
5819
  msgstr ""
5820
 
5821
- #: i18n/states/US.php:62 i18n/states.php:1328
5822
  msgid "West Virginia"
5823
  msgstr ""
5824
 
5825
- #: i18n/states/US.php:63 i18n/states.php:1329
5826
  msgid "Wisconsin"
5827
  msgstr ""
5828
 
5829
- #: i18n/states/US.php:64 i18n/states.php:1330
5830
  msgid "Wyoming"
5831
  msgstr ""
5832
 
5833
- #: i18n/states/US.php:65 i18n/states.php:1331
5834
  msgid "Armed Forces (AA)"
5835
  msgstr ""
5836
 
5837
- #: i18n/states/US.php:66 i18n/states.php:1332
5838
  msgid "Armed Forces (AE)"
5839
  msgstr ""
5840
 
5841
- #: i18n/states/US.php:67 i18n/states.php:1333
5842
  msgid "Armed Forces (AP)"
5843
  msgstr ""
5844
 
5845
- #: i18n/states/ZA.php:14 i18n/states.php:1338
5846
  msgid "Eastern Cape"
5847
  msgstr ""
5848
 
5849
- #: i18n/states/ZA.php:15 i18n/states.php:1339
5850
  msgid "Free State"
5851
  msgstr ""
5852
 
5853
- #: i18n/states/ZA.php:16 i18n/states.php:1340
5854
  msgid "Gauteng"
5855
  msgstr ""
5856
 
5857
- #: i18n/states/ZA.php:17 i18n/states.php:1341
5858
  msgid "KwaZulu-Natal"
5859
  msgstr ""
5860
 
5861
- #: i18n/states/ZA.php:18 i18n/states.php:1342
5862
  msgid "Limpopo"
5863
  msgstr ""
5864
 
5865
- #: i18n/states/ZA.php:19 i18n/states.php:1343
5866
  msgid "Mpumalanga"
5867
  msgstr ""
5868
 
5869
- #: i18n/states/ZA.php:20 i18n/states.php:1344
5870
  msgid "Northern Cape"
5871
  msgstr ""
5872
 
5873
- #: i18n/states/ZA.php:21 i18n/states.php:1345
5874
  msgid "North West"
5875
  msgstr ""
5876
 
5877
- #: i18n/states/ZA.php:22 i18n/states.php:1346
5878
  msgid "Western Cape"
5879
  msgstr ""
5880
 
@@ -6052,9 +6052,9 @@ msgstr ""
6052
 
6053
  #: includes/abstracts/abstract-wc-product.php:1985
6054
  #: includes/admin/class-wc-admin-reports.php:108
6055
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:277
6056
  #: includes/admin/reports/class-wc-report-stock.php:118
6057
- #: includes/wc-product-functions.php:811
6058
  msgid "Out of stock"
6059
  msgstr ""
6060
 
@@ -6530,13 +6530,13 @@ msgstr ""
6530
 
6531
  #: includes/abstracts/abstract-wc-settings-api.php:774
6532
  #: includes/admin/class-wc-admin-menus.php:328
6533
- #: includes/admin/class-wc-admin-settings.php:620
6534
  #: includes/admin/meta-boxes/views/html-product-attribute.php:56
6535
  msgid "Select all"
6536
  msgstr ""
6537
 
6538
  #: includes/abstracts/abstract-wc-settings-api.php:774
6539
- #: includes/admin/class-wc-admin-settings.php:620
6540
  #: includes/admin/meta-boxes/views/html-product-attribute.php:57
6541
  msgid "Select none"
6542
  msgstr ""
@@ -6622,7 +6622,7 @@ msgstr ""
6622
  #: includes/gateways/cheque/class-wc-gateway-cheque.php:71
6623
  #: includes/gateways/cod/class-wc-gateway-cod.php:122
6624
  #: includes/gateways/paypal/includes/settings-paypal.php:25
6625
- #: includes/wc-template-functions.php:1735
6626
  #: templates/single-product/tabs/description.php:24
6627
  msgid "Description"
6628
  msgstr ""
@@ -6655,7 +6655,7 @@ msgstr ""
6655
 
6656
  #: includes/admin/class-wc-admin-api-keys-table-list.php:96
6657
  #: includes/admin/class-wc-admin-webhooks-table-list.php:81
6658
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:84
6659
  #: includes/admin/meta-boxes/views/html-order-refund.php:29
6660
  #. translators: %s: API key ID.
6661
  #. translators: %s: webhook ID.
@@ -6886,8 +6886,8 @@ msgstr ""
6886
  #: includes/admin/class-wc-admin-assets.php:423
6887
  #: includes/admin/settings/views/html-webhooks-edit.php:67
6888
  #: includes/class-wc-frontend-scripts.php:570
6889
- #: includes/wc-template-functions.php:2712
6890
- #: includes/wc-template-functions.php:2713
6891
  #: templates/cart/shipping-calculator.php:56
6892
  msgid "Select an option&hellip;"
6893
  msgstr ""
@@ -6946,7 +6946,7 @@ msgstr ""
6946
  #: includes/admin/class-wc-admin-webhooks-table-list.php:48
6947
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:502
6948
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:661
6949
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:118
6950
  #: includes/admin/meta-boxes/views/html-product-attribute.php:17
6951
  #: includes/admin/meta-boxes/views/html-product-data-general.php:82
6952
  #: includes/admin/meta-boxes/views/html-variation-admin.php:370
@@ -7021,7 +7021,7 @@ msgstr ""
7021
 
7022
  #: includes/admin/class-wc-admin-assets.php:315
7023
  #: includes/admin/class-wc-admin-post-types.php:761
7024
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:131
7025
  #: includes/admin/views/html-bulk-edit-product.php:200
7026
  #: includes/admin/views/html-quick-edit-product.php:159
7027
  msgid "Featured"
@@ -7310,39 +7310,39 @@ msgid_plural "<strong>%s orders</strong> on-hold"
7310
  msgstr[0] ""
7311
  msgstr[1] ""
7312
 
7313
- #: includes/admin/class-wc-admin-dashboard.php:244
7314
  #. translators: %s: order count
7315
  msgid "<strong>%s product</strong> low in stock"
7316
  msgid_plural "<strong>%s products</strong> low in stock"
7317
  msgstr[0] ""
7318
  msgstr[1] ""
7319
 
7320
- #: includes/admin/class-wc-admin-dashboard.php:255
7321
  #. translators: %s: order count
7322
  msgid "<strong>%s product</strong> out of stock"
7323
  msgid_plural "<strong>%s products</strong> out of stock"
7324
  msgstr[0] ""
7325
  msgstr[1] ""
7326
 
7327
- #: includes/admin/class-wc-admin-dashboard.php:298
7328
  #. translators: %s: rating
7329
  msgid "%s out of 5"
7330
  msgstr ""
7331
 
7332
- #: includes/admin/class-wc-admin-dashboard.php:301
7333
  #. translators: %s: review author
7334
  msgid "reviewed by %s"
7335
  msgstr ""
7336
 
7337
- #: includes/admin/class-wc-admin-dashboard.php:307
7338
  msgid "There are no product reviews yet."
7339
  msgstr ""
7340
 
7341
- #: includes/admin/class-wc-admin-dashboard.php:338
7342
  msgid "Loading network orders"
7343
  msgstr ""
7344
 
7345
- #: includes/admin/class-wc-admin-dashboard.php:345
7346
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:121
7347
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:169
7348
  #: includes/admin/reports/class-wc-report-downloads.php:87
@@ -7352,7 +7352,7 @@ msgstr ""
7352
  msgid "Order"
7353
  msgstr ""
7354
 
7355
- #: includes/admin/class-wc-admin-dashboard.php:346
7356
  #: includes/admin/class-wc-admin-menus.php:123
7357
  #: includes/admin/class-wc-admin-webhooks-table-list.php:49
7358
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:123
@@ -7363,7 +7363,7 @@ msgstr ""
7363
  msgid "Status"
7364
  msgstr ""
7365
 
7366
- #: includes/admin/class-wc-admin-dashboard.php:347
7367
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:126
7368
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:458
7369
  #: includes/admin/meta-boxes/views/html-order-item.php:100
@@ -7379,7 +7379,7 @@ msgstr ""
7379
  msgid "Total"
7380
  msgstr ""
7381
 
7382
- #: includes/admin/class-wc-admin-dashboard.php:356
7383
  #: includes/class-wc-post-types.php:388
7384
  msgid "No orders found"
7385
  msgstr ""
@@ -7931,12 +7931,12 @@ msgstr ""
7931
 
7932
  #: includes/admin/class-wc-admin-pointers.php:250
7933
  #: includes/admin/views/html-notice-custom.php:12
7934
- #: includes/admin/views/html-notice-legacy-shipping.php:11
7935
- #: includes/admin/views/html-notice-no-shipping-methods.php:11
7936
  #: includes/admin/views/html-notice-secure-connection.php:12
7937
  #: includes/admin/views/html-notice-template-check.php:15
7938
  #: includes/admin/views/html-notice-updated.php:14
7939
- #: includes/wc-template-functions.php:1019
7940
  msgid "Dismiss"
7941
  msgstr ""
7942
 
@@ -8235,7 +8235,7 @@ msgstr ""
8235
  #: includes/admin/class-wc-admin-profile.php:105
8236
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:44
8237
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:95
8238
- #: includes/class-wc-countries.php:629 includes/class-wc-form-handler.php:252
8239
  #: templates/myaccount/form-edit-account.php:27
8240
  msgid "First name"
8241
  msgstr ""
@@ -8244,7 +8244,7 @@ msgstr ""
8244
  #: includes/admin/class-wc-admin-profile.php:109
8245
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:48
8246
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:99
8247
- #: includes/class-wc-countries.php:636 includes/class-wc-form-handler.php:253
8248
  #: templates/myaccount/form-edit-account.php:31
8249
  msgid "Last name"
8250
  msgstr ""
@@ -8306,19 +8306,19 @@ msgstr ""
8306
  #: includes/admin/settings/class-wc-settings-general.php:101
8307
  #: includes/admin/settings/class-wc-settings-tax.php:195
8308
  #: includes/admin/settings/views/html-settings-tax.php:28
8309
- #: includes/class-wc-countries.php:690
8310
  #: templates/cart/shipping-calculator.php:82
8311
  msgid "Postcode / ZIP"
8312
  msgstr ""
8313
 
8314
  #: includes/admin/class-wc-admin-profile.php:73
8315
  #: includes/admin/class-wc-admin-profile.php:133
8316
- #: includes/admin/class-wc-admin-settings.php:587
8317
- #: includes/admin/class-wc-admin-settings.php:612
8318
  #: includes/admin/class-wc-admin-setup-wizard.php:435
8319
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:72
8320
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:123
8321
- #: includes/class-wc-countries.php:651
8322
  msgid "Country"
8323
  msgstr ""
8324
 
@@ -8326,7 +8326,7 @@ msgstr ""
8326
  #: includes/admin/class-wc-admin-profile.php:137
8327
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:76
8328
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:127
8329
- #: includes/wc-template-functions.php:2686
8330
  #: templates/cart/shipping-calculator.php:31
8331
  msgid "Select a country&hellip;"
8332
  msgstr ""
@@ -8335,7 +8335,7 @@ msgstr ""
8335
  #: includes/admin/class-wc-admin-profile.php:140
8336
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:79
8337
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:130
8338
- #: includes/class-wc-countries.php:682
8339
  #: templates/cart/shipping-calculator.php:50
8340
  #: templates/cart/shipping-calculator.php:55
8341
  #: templates/cart/shipping-calculator.php:67
@@ -8350,15 +8350,15 @@ msgstr ""
8350
  #: includes/admin/class-wc-admin-profile.php:85
8351
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:375
8352
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:87
8353
- #: includes/class-wc-countries.php:1301
8354
  #: includes/customizer/class-wc-shop-customizer.php:679
8355
  msgid "Phone"
8356
  msgstr ""
8357
 
8358
  #: includes/admin/class-wc-admin-profile.php:89
8359
- #: includes/admin/class-wc-admin-setup-wizard.php:2279
8360
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:84
8361
- #: includes/class-wc-countries.php:1311 includes/class-wc-form-handler.php:255
8362
  #: templates/myaccount/form-edit-account.php:43
8363
  #: templates/myaccount/form-login.php:86
8364
  msgid "Email address"
@@ -8423,7 +8423,7 @@ msgstr ""
8423
 
8424
  #: includes/admin/class-wc-admin-reports.php:99
8425
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:513
8426
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:125
8427
  #: includes/admin/meta-boxes/views/html-product-data-variations.php:74
8428
  #: includes/export/class-wc-product-csv-exporter.php:119
8429
  msgid "Stock"
@@ -8453,57 +8453,63 @@ msgstr ""
8453
  msgid "Your settings have been saved."
8454
  msgstr ""
8455
 
8456
- #: includes/admin/class-wc-admin-settings.php:139
8457
  msgid "The changes you made will be lost if you navigate away from this page."
8458
  msgstr ""
8459
 
8460
- #: includes/admin/class-wc-admin-settings.php:140
8461
  msgid "Item moved up"
8462
  msgstr ""
8463
 
8464
- #: includes/admin/class-wc-admin-settings.php:141
8465
  msgid "Item moved down"
8466
  msgstr ""
8467
 
8468
- #: includes/admin/class-wc-admin-settings.php:521
 
 
 
 
 
 
8469
  msgid ""
8470
  "The settings of this image size have been disabled because its values are "
8471
  "being overwritten by a filter."
8472
  msgstr ""
8473
 
8474
- #: includes/admin/class-wc-admin-settings.php:533
8475
  msgid "Hard crop?"
8476
  msgstr ""
8477
 
8478
- #: includes/admin/class-wc-admin-settings.php:564
8479
  msgid "Select a page&hellip;"
8480
  msgstr ""
8481
 
8482
- #: includes/admin/class-wc-admin-settings.php:587
8483
  #: includes/admin/class-wc-admin-setup-wizard.php:435
8484
  msgid "Choose a country&hellip;"
8485
  msgstr ""
8486
 
8487
- #: includes/admin/class-wc-admin-settings.php:612
8488
  msgid "Choose countries&hellip;"
8489
  msgstr ""
8490
 
8491
- #: includes/admin/class-wc-admin-settings.php:629
8492
  #: includes/wc-formatting-functions.php:1425
8493
  msgid "Day(s)"
8494
  msgstr ""
8495
 
8496
- #: includes/admin/class-wc-admin-settings.php:630
8497
  #: includes/wc-formatting-functions.php:1426
8498
  msgid "Week(s)"
8499
  msgstr ""
8500
 
8501
- #: includes/admin/class-wc-admin-settings.php:631
8502
  #: includes/wc-formatting-functions.php:1427
8503
  msgid "Month(s)"
8504
  msgstr ""
8505
 
8506
- #: includes/admin/class-wc-admin-settings.php:632
8507
  #: includes/wc-formatting-functions.php:1428
8508
  msgid "Year(s)"
8509
  msgstr ""
@@ -8525,7 +8531,7 @@ msgid "Store setup"
8525
  msgstr ""
8526
 
8527
  #: includes/admin/class-wc-admin-setup-wizard.php:230
8528
- #: includes/admin/class-wc-admin-setup-wizard.php:1715
8529
  msgid "Payment"
8530
  msgstr ""
8531
 
@@ -8583,8 +8589,8 @@ msgstr ""
8583
 
8584
  #: includes/admin/class-wc-admin-setup-wizard.php:454
8585
  #: includes/admin/class-wc-admin-setup-wizard.php:456
8586
- #: includes/class-wc-countries.php:781 includes/class-wc-countries.php:1054
8587
- #: includes/class-wc-countries.php:1190
8588
  msgid "State"
8589
  msgstr ""
8590
 
@@ -8657,7 +8663,7 @@ msgstr ""
8657
 
8658
  #: includes/admin/class-wc-admin-setup-wizard.php:702
8659
  #: includes/admin/class-wc-admin-setup-wizard.php:737
8660
- #: includes/admin/class-wc-admin-setup-wizard.php:2219
8661
  msgid "Jetpack"
8662
  msgstr ""
8663
 
@@ -8804,8 +8810,8 @@ msgid "We'll use %1$s for product weight and %2$s for product dimensions."
8804
  msgstr ""
8805
 
8806
  #: includes/admin/class-wc-admin-setup-wizard.php:1051
8807
- #: includes/admin/class-wc-admin-setup-wizard.php:1773
8808
- #: includes/admin/class-wc-admin-setup-wizard.php:1933
8809
  #: includes/admin/importers/views/html-product-csv-import-form.php:101
8810
  msgid "Continue"
8811
  msgstr ""
@@ -8932,56 +8938,56 @@ msgid ""
8932
  "gateways. No setup fees or monthly subscription costs."
8933
  msgstr ""
8934
 
8935
- #: includes/admin/class-wc-admin-setup-wizard.php:1561
8936
  msgid "A simple offline gateway that lets you accept a check as method of payment."
8937
  msgstr ""
8938
 
8939
- #: includes/admin/class-wc-admin-setup-wizard.php:1566
8940
  msgid "Bank transfer (BACS) payments"
8941
  msgstr ""
8942
 
8943
- #: includes/admin/class-wc-admin-setup-wizard.php:1567
8944
  msgid "A simple offline gateway that lets you accept BACS payment."
8945
  msgstr ""
8946
 
8947
- #: includes/admin/class-wc-admin-setup-wizard.php:1572
8948
  #: includes/gateways/cod/class-wc-gateway-cod.php:56
8949
  #: includes/gateways/cod/class-wc-gateway-cod.php:118
8950
  msgid "Cash on delivery"
8951
  msgstr ""
8952
 
8953
- #: includes/admin/class-wc-admin-setup-wizard.php:1573
8954
  msgid "A simple offline gateway that lets you accept cash on delivery."
8955
  msgstr ""
8956
 
8957
- #: includes/admin/class-wc-admin-setup-wizard.php:1722
8958
  #. translators: %s: Link
8959
  msgid ""
8960
  "WooCommerce can accept both online and offline payments. <a href=\"%s\" "
8961
  "target=\"_blank\">Additional payment methods</a> can be installed later."
8962
  msgstr ""
8963
 
8964
- #: includes/admin/class-wc-admin-setup-wizard.php:1755
8965
  msgid "Offline Payments"
8966
  msgstr ""
8967
 
8968
- #: includes/admin/class-wc-admin-setup-wizard.php:1758
8969
  msgid "Collect payments from customers offline."
8970
  msgstr ""
8971
 
8972
- #: includes/admin/class-wc-admin-setup-wizard.php:1875
8973
  msgid "Recommended for All WooCommerce Stores"
8974
  msgstr ""
8975
 
8976
- #: includes/admin/class-wc-admin-setup-wizard.php:1877
8977
  msgid "Enhance your store with these recommended features."
8978
  msgstr ""
8979
 
8980
- #: includes/admin/class-wc-admin-setup-wizard.php:1887
8981
  msgid "Storefront Theme"
8982
  msgstr ""
8983
 
8984
- #: includes/admin/class-wc-admin-setup-wizard.php:1888
8985
  msgid ""
8986
  "Design your store with deep WooCommerce integration. If toggled on, we’ll "
8987
  "install <a href=\"https://woocommerce.com/storefront/\" target=\"_blank\" "
@@ -8989,198 +8995,198 @@ msgid ""
8989
  "<em>%s</em> will be deactivated."
8990
  msgstr ""
8991
 
8992
- #: includes/admin/class-wc-admin-setup-wizard.php:1893
8993
  msgid "Storefront icon"
8994
  msgstr ""
8995
 
8996
- #: includes/admin/class-wc-admin-setup-wizard.php:1900
8997
  msgid "Automated Taxes"
8998
  msgstr ""
8999
 
9000
- #: includes/admin/class-wc-admin-setup-wizard.php:1901
9001
  msgid ""
9002
  "Save time and errors with automated tax calculation and collection at "
9003
  "checkout. Powered by WooCommerce Services and Jetpack."
9004
  msgstr ""
9005
 
9006
- #: includes/admin/class-wc-admin-setup-wizard.php:1903
9007
  msgid "automated taxes icon"
9008
  msgstr ""
9009
 
9010
- #: includes/admin/class-wc-admin-setup-wizard.php:1911
9011
  msgid "Mailchimp"
9012
  msgstr ""
9013
 
9014
- #: includes/admin/class-wc-admin-setup-wizard.php:1912
9015
  msgid ""
9016
  "Join the 16 million customers who use Mailchimp. Sync list and store data "
9017
  "to send automated emails, and targeted campaigns."
9018
  msgstr ""
9019
 
9020
- #: includes/admin/class-wc-admin-setup-wizard.php:1914
9021
  msgid "Mailchimp icon"
9022
  msgstr ""
9023
 
9024
- #: includes/admin/class-wc-admin-setup-wizard.php:1915
9025
  msgid "Mailchimp for WooCommerce"
9026
  msgstr ""
9027
 
9028
- #: includes/admin/class-wc-admin-setup-wizard.php:1922
9029
  msgid "Facebook"
9030
  msgstr ""
9031
 
9032
- #: includes/admin/class-wc-admin-setup-wizard.php:1923
9033
  msgid ""
9034
  "Enjoy all Facebook products combined in one extension: pixel tracking, "
9035
  "catalog sync, messenger chat, shop functionality and Instagram shopping "
9036
  "(coming soon)!"
9037
  msgstr ""
9038
 
9039
- #: includes/admin/class-wc-admin-setup-wizard.php:1925
9040
  msgid "Facebook icon"
9041
  msgstr ""
9042
 
9043
- #: includes/admin/class-wc-admin-setup-wizard.php:1926
9044
- #: includes/admin/class-wc-admin-setup-wizard.php:1980
9045
  msgid "Facebook for WooCommerce"
9046
  msgstr ""
9047
 
9048
- #: includes/admin/class-wc-admin-setup-wizard.php:1969
9049
  msgid "MailChimp for WooCommerce"
9050
  msgstr ""
9051
 
9052
- #: includes/admin/class-wc-admin-setup-wizard.php:2027
9053
  msgid "payment setup, automated taxes and discounted shipping labels"
9054
  msgstr ""
9055
 
9056
- #: includes/admin/class-wc-admin-setup-wizard.php:2029
9057
  msgid "payment setup and automated taxes"
9058
  msgstr ""
9059
 
9060
- #: includes/admin/class-wc-admin-setup-wizard.php:2031
9061
  msgid "payment setup and discounted shipping labels"
9062
  msgstr ""
9063
 
9064
- #: includes/admin/class-wc-admin-setup-wizard.php:2033
9065
  msgid "payment setup"
9066
  msgstr ""
9067
 
9068
- #: includes/admin/class-wc-admin-setup-wizard.php:2035
9069
  msgid "automated taxes and discounted shipping labels"
9070
  msgstr ""
9071
 
9072
- #: includes/admin/class-wc-admin-setup-wizard.php:2037
9073
  msgid "automated taxes"
9074
  msgstr ""
9075
 
9076
- #: includes/admin/class-wc-admin-setup-wizard.php:2039
9077
  msgid "discounted shipping labels"
9078
  msgstr ""
9079
 
9080
- #: includes/admin/class-wc-admin-setup-wizard.php:2056
9081
  msgid "Sorry, we couldn't connect your store to Jetpack"
9082
  msgstr ""
9083
 
9084
- #: includes/admin/class-wc-admin-setup-wizard.php:2068
9085
  #. translators: %s: list of features, potentially comma separated
9086
  msgid ""
9087
  "Your store is almost ready! To activate services like %s, just connect with "
9088
  "Jetpack."
9089
  msgstr ""
9090
 
9091
- #: includes/admin/class-wc-admin-setup-wizard.php:2070
9092
  msgid ""
9093
  "Thanks for using Jetpack! Your store is almost ready: to activate services "
9094
  "like %s, just connect your store."
9095
  msgstr ""
9096
 
9097
- #: includes/admin/class-wc-admin-setup-wizard.php:2077
9098
  msgid "Connect your store to Jetpack"
9099
  msgstr ""
9100
 
9101
- #: includes/admin/class-wc-admin-setup-wizard.php:2078
9102
  msgid "Connect your store to Jetpack to enable extra features"
9103
  msgstr ""
9104
 
9105
- #: includes/admin/class-wc-admin-setup-wizard.php:2079
9106
  msgid "Continue with Jetpack"
9107
  msgstr ""
9108
 
9109
- #: includes/admin/class-wc-admin-setup-wizard.php:2081
9110
  msgid "Connect your store to activate WooCommerce Services"
9111
  msgstr ""
9112
 
9113
- #: includes/admin/class-wc-admin-setup-wizard.php:2082
9114
  msgid "Continue with WooCommerce Services"
9115
  msgstr ""
9116
 
9117
- #: includes/admin/class-wc-admin-setup-wizard.php:2118
9118
  msgid "Finish setting up your store"
9119
  msgstr ""
9120
 
9121
- #: includes/admin/class-wc-admin-setup-wizard.php:2125
9122
  msgid ""
9123
  "By connecting your site you agree to our fascinating <a href=\"%1$s\" "
9124
  "target=\"_blank\">Terms of Service</a> and to <a href=\"%2$s\" "
9125
  "target=\"_blank\">share details</a> with WordPress.com"
9126
  msgstr ""
9127
 
9128
- #: includes/admin/class-wc-admin-setup-wizard.php:2142
9129
  msgid "Bonus reasons you'll love Jetpack"
9130
  msgstr ""
9131
 
9132
- #: includes/admin/class-wc-admin-setup-wizard.php:2143
9133
  msgid "Reasons you'll love Jetpack"
9134
  msgstr ""
9135
 
9136
- #: includes/admin/class-wc-admin-setup-wizard.php:2150
9137
  msgid "Better security"
9138
  msgstr ""
9139
 
9140
- #: includes/admin/class-wc-admin-setup-wizard.php:2153
9141
  msgid "Protect your store from unauthorized access."
9142
  msgstr ""
9143
 
9144
- #: includes/admin/class-wc-admin-setup-wizard.php:2158
9145
  msgid "Store stats"
9146
  msgstr ""
9147
 
9148
- #: includes/admin/class-wc-admin-setup-wizard.php:2161
9149
  msgid ""
9150
  "Get insights on how your store is doing, including total sales, top "
9151
  "products, and more."
9152
  msgstr ""
9153
 
9154
- #: includes/admin/class-wc-admin-setup-wizard.php:2166
9155
  msgid "Store monitoring"
9156
  msgstr ""
9157
 
9158
- #: includes/admin/class-wc-admin-setup-wizard.php:2169
9159
  msgid "Get an alert if your store is down for even a few minutes."
9160
  msgstr ""
9161
 
9162
- #: includes/admin/class-wc-admin-setup-wizard.php:2174
9163
  msgid "Product promotion"
9164
  msgstr ""
9165
 
9166
- #: includes/admin/class-wc-admin-setup-wizard.php:2177
9167
  msgid "Share new items on social media the moment they're live in your store."
9168
  msgstr ""
9169
 
9170
- #: includes/admin/class-wc-admin-setup-wizard.php:2188
9171
  msgid ""
9172
  "Sorry! We tried, but we couldn't connect Jetpack just now 😭. Please go to "
9173
  "the Plugins tab to connect Jetpack, so that you can finish setting up your "
9174
  "store."
9175
  msgstr ""
9176
 
9177
- #: includes/admin/class-wc-admin-setup-wizard.php:2189
9178
  msgid ""
9179
  "Sorry! We tried, but we couldn't install Jetpack for you 😭. Please go to "
9180
  "the Plugins tab to install it, and finish setting up your store."
9181
  msgstr ""
9182
 
9183
- #: includes/admin/class-wc-admin-setup-wizard.php:2190
9184
  msgid ""
9185
  "Sorry! We couldn't contact Jetpack just now 😭. Please make sure that your "
9186
  "site is visible over the internet, and that it accepts incoming and "
@@ -9188,14 +9194,14 @@ msgid ""
9188
  "and if you run into any more issues, please contact support."
9189
  msgstr ""
9190
 
9191
- #: includes/admin/class-wc-admin-setup-wizard.php:2191
9192
  msgid ""
9193
  "Your site might be on a private network. Jetpack can only connect to public "
9194
  "sites. Please make sure your site is visible over the internet, and then "
9195
  "try connecting again 🙏."
9196
  msgstr ""
9197
 
9198
- #: includes/admin/class-wc-admin-setup-wizard.php:2263
9199
  #. translators: %1$s: link to videos, %2$s: link to docs
9200
  msgid ""
9201
  "Watch our <a href=\"%1$s\" target=\"_blank\">guided tour videos</a> to "
@@ -9203,63 +9209,63 @@ msgid ""
9203
  "<a href=\"%2$s\" target=\"_blank\">getting started</a>."
9204
  msgstr ""
9205
 
9206
- #: includes/admin/class-wc-admin-setup-wizard.php:2268
9207
  msgid "You're ready to start selling!"
9208
  msgstr ""
9209
 
9210
- #: includes/admin/class-wc-admin-setup-wizard.php:2271
9211
  msgid ""
9212
  "We're here for you — get tips, product updates, and inspiration straight to "
9213
  "your mailbox."
9214
  msgstr ""
9215
 
9216
- #: includes/admin/class-wc-admin-setup-wizard.php:2285
9217
- #: includes/admin/class-wc-admin-setup-wizard.php:2289
9218
  msgid "Yes please!"
9219
  msgstr ""
9220
 
9221
- #: includes/admin/class-wc-admin-setup-wizard.php:2298
9222
  msgid "Next step"
9223
  msgstr ""
9224
 
9225
- #: includes/admin/class-wc-admin-setup-wizard.php:2299
9226
  msgid "Create some products"
9227
  msgstr ""
9228
 
9229
- #: includes/admin/class-wc-admin-setup-wizard.php:2300
9230
  msgid "You're ready to add products to your store."
9231
  msgstr ""
9232
 
9233
- #: includes/admin/class-wc-admin-setup-wizard.php:2305
9234
  msgid "Create a product"
9235
  msgstr ""
9236
 
9237
- #: includes/admin/class-wc-admin-setup-wizard.php:2312
9238
  msgid "Have an existing store?"
9239
  msgstr ""
9240
 
9241
- #: includes/admin/class-wc-admin-setup-wizard.php:2313
9242
- #: includes/admin/class-wc-admin-setup-wizard.php:2319
9243
  msgid "Import products"
9244
  msgstr ""
9245
 
9246
- #: includes/admin/class-wc-admin-setup-wizard.php:2314
9247
  msgid "Transfer existing products to your new store — just import a CSV file."
9248
  msgstr ""
9249
 
9250
- #: includes/admin/class-wc-admin-setup-wizard.php:2326
9251
  msgid "You can also:"
9252
  msgstr ""
9253
 
9254
- #: includes/admin/class-wc-admin-setup-wizard.php:2331
9255
  msgid "Visit Dashboard"
9256
  msgstr ""
9257
 
9258
- #: includes/admin/class-wc-admin-setup-wizard.php:2334
9259
  msgid "Review Settings"
9260
  msgstr ""
9261
 
9262
- #: includes/admin/class-wc-admin-setup-wizard.php:2337
9263
  msgid "View &amp; Customize"
9264
  msgstr ""
9265
 
@@ -9354,7 +9360,7 @@ msgid ""
9354
  msgstr ""
9355
 
9356
  #: includes/admin/class-wc-admin-taxonomies.php:375
9357
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:117
9358
  msgid "Image"
9359
  msgstr ""
9360
 
@@ -9458,24 +9464,24 @@ msgstr ""
9458
  msgid "Create a new webhook"
9459
  msgstr ""
9460
 
9461
- #: includes/admin/class-wc-admin.php:215
9462
  msgid "HTML email template"
9463
  msgstr ""
9464
 
9465
- #: includes/admin/class-wc-admin.php:259
9466
  #. translators: 1: WooCommerce 2:: five stars
9467
  msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
9468
  msgstr ""
9469
 
9470
- #: includes/admin/class-wc-admin.php:261
9471
  msgid "five star"
9472
  msgstr ""
9473
 
9474
- #: includes/admin/class-wc-admin.php:261
9475
  msgid "Thanks :)"
9476
  msgstr ""
9477
 
9478
- #: includes/admin/class-wc-admin.php:270
9479
  msgid "Thank you for selling with WooCommerce."
9480
  msgstr ""
9481
 
@@ -9600,7 +9606,7 @@ msgstr ""
9600
  #: includes/class-wc-emails.php:410
9601
  #: includes/legacy/abstract-wc-legacy-order.php:507
9602
  #: includes/wc-account-functions.php:219
9603
- #: includes/wc-template-functions.php:3260
9604
  msgid "Download"
9605
  msgstr ""
9606
 
@@ -9861,7 +9867,7 @@ msgstr ""
9861
 
9862
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:501
9863
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:660
9864
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:121
9865
  #: includes/admin/meta-boxes/views/html-product-data-inventory.php:21
9866
  #: includes/admin/meta-boxes/views/html-variation-admin.php:79
9867
  #: includes/admin/views/html-quick-edit-product.php:21
@@ -10028,7 +10034,7 @@ msgstr ""
10028
 
10029
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:529
10030
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:696
10031
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:129
10032
  #: includes/admin/reports/class-wc-report-sales-by-category.php:201
10033
  #: includes/class-wc-post-types.php:90
10034
  #: includes/export/class-wc-product-csv-exporter.php:135
@@ -10037,7 +10043,7 @@ msgstr ""
10037
 
10038
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:530
10039
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:697
10040
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:130
10041
  #: includes/export/class-wc-product-csv-exporter.php:136
10042
  msgid "Tags"
10043
  msgstr ""
@@ -10180,7 +10186,7 @@ msgstr ""
10180
 
10181
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:668
10182
  #: includes/admin/importers/mappings/generic.php:23
10183
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:128
10184
  #: includes/admin/views/html-bulk-edit-product.php:21
10185
  #: includes/admin/views/html-quick-edit-product.php:32
10186
  #: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:31
@@ -10189,7 +10195,7 @@ msgid "Price"
10189
  msgstr ""
10190
 
10191
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:686
10192
- #: includes/wc-template-functions.php:3313
10193
  msgid "Dimensions"
10194
  msgstr ""
10195
 
@@ -10562,7 +10568,7 @@ msgid "Learn more about orders"
10562
  msgstr ""
10563
 
10564
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:122
10565
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:132
10566
  #: includes/admin/reports/class-wc-report-coupon-usage.php:367
10567
  #: includes/admin/reports/class-wc-report-customers.php:238
10568
  #: includes/admin/reports/class-wc-report-sales-by-category.php:274
@@ -10779,23 +10785,23 @@ msgstr ""
10779
  msgid "Filter by registered customer"
10780
  msgstr ""
10781
 
10782
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:52
10783
  msgid "Ready to start selling something awesome?"
10784
  msgstr ""
10785
 
10786
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:56
10787
  msgid "Create Product"
10788
  msgstr ""
10789
 
10790
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:57
10791
  msgid "Start Import"
10792
  msgstr ""
10793
 
10794
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:259
10795
  msgid "Toggle featured"
10796
  msgstr ""
10797
 
10798
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:261
10799
  #: includes/admin/settings/class-wc-settings-emails.php:302
10800
  #: includes/admin/settings/class-wc-settings-payment-gateways.php:186
10801
  #: includes/admin/settings/class-wc-settings-shipping.php:272
@@ -10805,7 +10811,7 @@ msgstr ""
10805
  msgid "Yes"
10806
  msgstr ""
10807
 
10808
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:263
10809
  #: includes/admin/settings/class-wc-settings-payment-gateways.php:189
10810
  #: includes/admin/settings/class-wc-settings-shipping.php:273
10811
  #: includes/admin/views/html-bulk-edit-product.php:207
@@ -10814,45 +10820,45 @@ msgstr ""
10814
  msgid "No"
10815
  msgstr ""
10816
 
10817
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:273
10818
  #: includes/admin/reports/class-wc-report-stock.php:114
10819
- #: includes/wc-product-functions.php:812
10820
  msgid "On backorder"
10821
  msgstr ""
10822
 
10823
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:275
10824
  #: includes/admin/reports/class-wc-report-stock.php:116
10825
  #: includes/wc-formatting-functions.php:1178
10826
- #: includes/wc-product-functions.php:810
10827
  msgid "In stock"
10828
  msgstr ""
10829
 
10830
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:331
10831
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:339
10832
  msgid "Filter by category"
10833
  msgstr ""
10834
 
10835
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:355
10836
  msgid "Filter by product type"
10837
  msgstr ""
10838
 
10839
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:366
10840
  #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:69
10841
  #: includes/admin/meta-boxes/views/html-variation-admin.php:93
10842
  msgid "Downloadable"
10843
  msgstr ""
10844
 
10845
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:370
10846
  #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:62
10847
  #: includes/admin/meta-boxes/views/html-variation-admin.php:97
10848
  msgid "Virtual"
10849
  msgstr ""
10850
 
10851
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:386
10852
  msgid "Filter by stock status"
10853
  msgstr ""
10854
 
10855
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:425
10856
  msgid "Sorting"
10857
  msgstr ""
10858
 
@@ -11852,7 +11858,7 @@ msgstr ""
11852
  #: includes/admin/meta-boxes/views/html-product-data-variations.php:83
11853
  #: includes/admin/views/html-bulk-edit-product.php:118
11854
  #: includes/admin/views/html-quick-edit-product.php:98
11855
- #: includes/wc-template-functions.php:3306
11856
  msgid "Weight"
11857
  msgstr ""
11858
 
@@ -12869,7 +12875,7 @@ msgid ""
12869
  msgstr ""
12870
 
12871
  #: includes/admin/settings/class-wc-settings-accounts.php:154
12872
- #: includes/wc-template-functions.php:811
12873
  #. translators: %s privacy policy page name and link
12874
  msgid ""
12875
  "Your personal data will be used to support your experience throughout this "
@@ -12890,7 +12896,7 @@ msgstr ""
12890
 
12891
  #: includes/admin/settings/class-wc-settings-accounts.php:164
12892
  #: includes/customizer/class-wc-shop-customizer.php:736
12893
- #: includes/wc-template-functions.php:807
12894
  #. translators: %s privacy policy page name and link
12895
  msgid ""
12896
  "Your personal data will be used to process your order, support your "
@@ -13909,7 +13915,7 @@ msgstr ""
13909
  #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:14
13910
  #: includes/admin/settings/views/html-admin-page-shipping-zones-instance.php:7
13911
  #: includes/admin/settings/views/html-admin-page-shipping-zones.php:8
13912
- #: includes/admin/views/html-notice-legacy-shipping.php:13
13913
  msgid "Shipping zones"
13914
  msgstr ""
13915
 
@@ -14300,7 +14306,7 @@ msgstr ""
14300
  #: includes/admin/settings/views/html-settings-tax.php:18
14301
  #: includes/admin/views/html-bulk-edit-product.php:95
14302
  #: includes/admin/views/html-quick-edit-product.php:72
14303
- #: includes/wc-product-functions.php:790
14304
  msgid "Standard"
14305
  msgstr ""
14306
 
@@ -15588,7 +15594,7 @@ msgstr ""
15588
  #: includes/admin/views/html-bulk-edit-product.php:190
15589
  #: includes/admin/views/html-quick-edit-product.php:147
15590
  #: includes/customizer/class-wc-shop-customizer.php:700
15591
- #: includes/wc-product-functions.php:776
15592
  msgid "Hidden"
15593
  msgstr ""
15594
 
@@ -15630,17 +15636,17 @@ msgstr ""
15630
  msgid "Skip setup"
15631
  msgstr ""
15632
 
15633
- #: includes/admin/views/html-notice-legacy-shipping.php:13
15634
  msgid "New:"
15635
  msgstr ""
15636
 
15637
- #: includes/admin/views/html-notice-legacy-shipping.php:13
15638
  msgid ""
15639
  "a group of regions that can be assigned different shipping methods and "
15640
  "rates."
15641
  msgstr ""
15642
 
15643
- #: includes/admin/views/html-notice-legacy-shipping.php:14
15644
  msgid ""
15645
  "Legacy shipping methods (flat rate, international flat rate, local pickup "
15646
  "and delivery, and free shipping) are deprecated but will continue to work "
@@ -15649,27 +15655,27 @@ msgid ""
15649
  "within shipping zones as soon as possible."
15650
  msgstr ""
15651
 
15652
- #: includes/admin/views/html-notice-legacy-shipping.php:18
15653
- #: includes/admin/views/html-notice-no-shipping-methods.php:18
15654
  msgid "Setup shipping zones"
15655
  msgstr ""
15656
 
15657
- #: includes/admin/views/html-notice-legacy-shipping.php:20
15658
- #: includes/admin/views/html-notice-no-shipping-methods.php:19
15659
  msgid "Learn more about shipping zones"
15660
  msgstr ""
15661
 
15662
- #: includes/admin/views/html-notice-no-shipping-methods.php:13
15663
  msgid "Add shipping methods &amp; zones"
15664
  msgstr ""
15665
 
15666
- #: includes/admin/views/html-notice-no-shipping-methods.php:14
15667
  msgid ""
15668
  "Shipping is currently enabled, but you have not added any shipping methods "
15669
  "to your shipping zones."
15670
  msgstr ""
15671
 
15672
- #: includes/admin/views/html-notice-no-shipping-methods.php:15
15673
  msgid ""
15674
  "Customers will not be able to purchase physical goods from your store until "
15675
  "a shipping method is available."
@@ -17559,8 +17565,8 @@ msgid "Amount of products."
17559
  msgstr ""
17560
 
17561
  #: includes/api/class-wc-rest-report-reviews-totals-controller.php:57
17562
- #: includes/class-wc-embed.php:130 includes/wc-template-functions.php:3419
17563
- #: includes/wc-template-functions.php:3442
17564
  #: includes/widgets/class-wc-widget-layered-nav-filters.php:102
17565
  #. translators: %s: average rating
17566
  #. translators: %s: rating
@@ -17775,7 +17781,7 @@ msgstr ""
17775
  #: includes/api/v1/class-wc-rest-products-controller.php:314
17776
  #: includes/api/v2/class-wc-rest-products-v2-controller.php:426
17777
  #: includes/api/v2/class-wc-rest-products-v2-controller.php:427
17778
- #: includes/wc-product-functions.php:300 includes/wc-product-functions.php:306
17779
  msgid "Placeholder"
17780
  msgstr ""
17781
 
@@ -20831,7 +20837,7 @@ msgstr ""
20831
 
20832
  #: includes/class-wc-cart.php:1042 includes/class-wc-cart.php:1070
20833
  #: includes/class-wc-frontend-scripts.php:550
20834
- #: includes/wc-cart-functions.php:123 includes/wc-template-functions.php:2070
20835
  #. translators: %s: product name
20836
  msgid "View cart"
20837
  msgstr ""
@@ -21024,92 +21030,92 @@ msgstr ""
21024
  msgid "(ex. tax)"
21025
  msgstr ""
21026
 
21027
- #: includes/class-wc-countries.php:622
21028
  msgid "Apartment, suite, unit etc. (optional)"
21029
  msgstr ""
21030
 
21031
- #: includes/class-wc-countries.php:624
21032
  msgid "Apartment, suite, unit etc."
21033
  msgstr ""
21034
 
21035
- #: includes/class-wc-countries.php:643
21036
  #: includes/customizer/class-wc-shop-customizer.php:677
21037
  msgid "Company name"
21038
  msgstr ""
21039
 
21040
- #: includes/class-wc-countries.php:658
21041
  msgid "Street address"
21042
  msgstr ""
21043
 
21044
- #: includes/class-wc-countries.php:660
21045
  #. translators: use local order of street name and house number.
21046
  msgid "House number and street name"
21047
  msgstr ""
21048
 
21049
- #: includes/class-wc-countries.php:674
21050
  msgid "Town / City"
21051
  msgstr ""
21052
 
21053
- #: includes/class-wc-countries.php:762 includes/class-wc-countries.php:806
21054
- #: includes/class-wc-countries.php:836 includes/class-wc-countries.php:861
21055
- #: includes/class-wc-countries.php:947 includes/class-wc-countries.php:986
21056
- #: includes/class-wc-countries.php:1044 includes/class-wc-countries.php:1142
21057
- #: includes/class-wc-countries.php:1182 includes/class-wc-countries.php:1238
21058
  msgid "Province"
21059
  msgstr ""
21060
 
21061
- #: includes/class-wc-countries.php:775
21062
  msgid "Suburb"
21063
  msgstr ""
21064
 
21065
- #: includes/class-wc-countries.php:778 includes/class-wc-countries.php:1049
21066
- #: includes/class-wc-countries.php:1059 includes/class-wc-countries.php:1195
21067
  msgid "Postcode"
21068
  msgstr ""
21069
 
21070
- #: includes/class-wc-countries.php:797 includes/class-wc-countries.php:1208
21071
  msgid "District"
21072
  msgstr ""
21073
 
21074
- #: includes/class-wc-countries.php:844
21075
  msgid "Canton"
21076
  msgstr ""
21077
 
21078
- #: includes/class-wc-countries.php:856 includes/class-wc-countries.php:937
21079
- #: includes/class-wc-countries.php:1063
21080
  msgid "Region"
21081
  msgstr ""
21082
 
21083
- #: includes/class-wc-countries.php:934
21084
  msgid "Town / District"
21085
  msgstr ""
21086
 
21087
- #: includes/class-wc-countries.php:942 includes/class-wc-countries.php:956
21088
- #: includes/class-wc-countries.php:1102 includes/class-wc-countries.php:1198
21089
  msgid "County"
21090
  msgstr ""
21091
 
21092
- #: includes/class-wc-countries.php:953
21093
  msgid "Eircode"
21094
  msgstr ""
21095
 
21096
- #: includes/class-wc-countries.php:994
21097
  msgid "Prefecture"
21098
  msgstr ""
21099
 
21100
- #: includes/class-wc-countries.php:1019 includes/class-wc-countries.php:1150
21101
  msgid "Municipality"
21102
  msgstr ""
21103
 
21104
- #: includes/class-wc-countries.php:1076
21105
  msgid "State / Zone"
21106
  msgstr ""
21107
 
21108
- #: includes/class-wc-countries.php:1166
21109
  msgid "Municipality / District"
21110
  msgstr ""
21111
 
21112
- #: includes/class-wc-countries.php:1187
21113
  msgid "ZIP"
21114
  msgstr ""
21115
 
@@ -21490,12 +21496,12 @@ msgid "Error processing checkout. Please try again."
21490
  msgstr ""
21491
 
21492
  #: includes/class-wc-frontend-scripts.php:524
21493
- #: includes/wc-template-functions.php:2624
21494
  msgid "required"
21495
  msgstr ""
21496
 
21497
  #: includes/class-wc-frontend-scripts.php:525
21498
- #: includes/wc-template-functions.php:2626
21499
  msgid "optional"
21500
  msgstr ""
21501
 
@@ -22609,21 +22615,21 @@ msgstr ""
22609
  msgid "Output just the id when the operation is successful."
22610
  msgstr ""
22611
 
22612
- #: includes/cli/class-wc-cli-update-command.php:53
22613
  #. translators: %s Database version number
22614
  msgid "No updates required. Database version is %s"
22615
  msgstr ""
22616
 
22617
- #: includes/cli/class-wc-cli-update-command.php:58
22618
  #. translators: 1: Number of database updates 2: List of update callbacks
22619
  msgid "Found %1$d updates (%2$s)"
22620
  msgstr ""
22621
 
22622
- #: includes/cli/class-wc-cli-update-command.php:60
22623
  msgid "Updating database"
22624
  msgstr ""
22625
 
22626
- #: includes/cli/class-wc-cli-update-command.php:77
22627
  #. translators: 1: Number of database updates performed 2: Database version
22628
  #. number
22629
  msgid "%1$d update functions completed. Database version is %2$s"
@@ -22675,7 +22681,7 @@ msgid "Store Notice"
22675
  msgstr ""
22676
 
22677
  #: includes/customizer/class-wc-shop-customizer.php:311
22678
- #: includes/wc-template-functions.php:1014
22679
  msgid ""
22680
  "This is a demo store for testing purposes &mdash; no orders shall be "
22681
  "fulfilled."
@@ -22833,7 +22839,7 @@ msgid "Images will display using the aspect ratio in which they were uploaded"
22833
  msgstr ""
22834
 
22835
  #: includes/customizer/class-wc-shop-customizer.php:668
22836
- #: includes/wc-template-functions.php:2080
22837
  msgid "Checkout"
22838
  msgstr ""
22839
 
@@ -22851,7 +22857,7 @@ msgid "Required"
22851
  msgstr ""
22852
 
22853
  #: includes/customizer/class-wc-shop-customizer.php:724
22854
- #: includes/wc-template-functions.php:791
22855
  #. translators: %s terms and conditions page name and link
22856
  msgid "I have read and agree to the website %s"
22857
  msgstr ""
@@ -23968,7 +23974,7 @@ msgid "No matching product exists to update."
23968
  msgstr ""
23969
 
23970
  #: includes/legacy/abstract-wc-legacy-order.php:507
23971
- #: includes/wc-template-functions.php:3260
23972
  #. translators: 1: current item count
23973
  #. translators: %d: downloads count
23974
  msgid "Download %d"
@@ -25635,43 +25641,43 @@ msgstr ""
25635
  msgid "%1$s should not be called before the %2$s action."
25636
  msgstr ""
25637
 
25638
- #: includes/wc-product-functions.php:536
25639
  msgid "Simple product"
25640
  msgstr ""
25641
 
25642
- #: includes/wc-product-functions.php:537
25643
  msgid "Grouped product"
25644
  msgstr ""
25645
 
25646
- #: includes/wc-product-functions.php:538
25647
  msgid "External/Affiliate product"
25648
  msgstr ""
25649
 
25650
- #: includes/wc-product-functions.php:539
25651
  msgid "Variable product"
25652
  msgstr ""
25653
 
25654
- #: includes/wc-product-functions.php:773
25655
  msgid "Shop and search results"
25656
  msgstr ""
25657
 
25658
- #: includes/wc-product-functions.php:774
25659
  msgid "Shop only"
25660
  msgstr ""
25661
 
25662
- #: includes/wc-product-functions.php:775
25663
  msgid "Search results only"
25664
  msgstr ""
25665
 
25666
- #: includes/wc-product-functions.php:825
25667
  msgid "Do not allow"
25668
  msgstr ""
25669
 
25670
- #: includes/wc-product-functions.php:826
25671
  msgid "Allow, but notify customer"
25672
  msgstr ""
25673
 
25674
- #: includes/wc-product-functions.php:827
25675
  msgid "Allow"
25676
  msgstr ""
25677
 
@@ -25704,21 +25710,21 @@ msgstr ""
25704
  msgid "The date you provided is invalid."
25705
  msgstr ""
25706
 
25707
- #: includes/wc-stock-functions.php:173
25708
  #. translators: %s item name.
25709
  msgid "Unable to reduce stock for item %s."
25710
  msgstr ""
25711
 
25712
- #: includes/wc-stock-functions.php:228
25713
  msgid "Stock levels reduced:"
25714
  msgstr ""
25715
 
25716
- #: includes/wc-stock-functions.php:271
25717
  #. translators: %s item name.
25718
  msgid "Unable to restore stock for item %s."
25719
  msgstr ""
25720
 
25721
- #: includes/wc-stock-functions.php:282
25722
  msgid "Stock levels increased:"
25723
  msgstr ""
25724
 
@@ -25726,85 +25732,85 @@ msgstr ""
25726
  msgid "Checkout is not available whilst your cart is empty."
25727
  msgstr ""
25728
 
25729
- #: includes/wc-template-functions.php:899
25730
  msgid "privacy policy"
25731
  msgstr ""
25732
 
25733
- #: includes/wc-template-functions.php:900
25734
  msgid "terms and conditions"
25735
  msgstr ""
25736
 
25737
- #: includes/wc-template-functions.php:1039
25738
  #. translators: %s: search query
25739
  msgid "Search results: &ldquo;%s&rdquo;"
25740
  msgstr ""
25741
 
25742
- #: includes/wc-template-functions.php:1043
25743
  #. translators: %s: page number
25744
  msgid "&nbsp;&ndash; Page %s"
25745
  msgstr ""
25746
 
25747
- #: includes/wc-template-functions.php:1355
25748
  msgid "Default sorting"
25749
  msgstr ""
25750
 
25751
- #: includes/wc-template-functions.php:1356
25752
  msgid "Sort by popularity"
25753
  msgstr ""
25754
 
25755
- #: includes/wc-template-functions.php:1357
25756
  msgid "Sort by average rating"
25757
  msgstr ""
25758
 
25759
- #: includes/wc-template-functions.php:1358
25760
  msgid "Sort by latest"
25761
  msgstr ""
25762
 
25763
- #: includes/wc-template-functions.php:1359
25764
  msgid "Sort by price: low to high"
25765
  msgstr ""
25766
 
25767
- #: includes/wc-template-functions.php:1360
25768
  msgid "Sort by price: high to low"
25769
  msgstr ""
25770
 
25771
- #: includes/wc-template-functions.php:1368
25772
  msgid "Relevance"
25773
  msgstr ""
25774
 
25775
- #: includes/wc-template-functions.php:1744
25776
  #: templates/checkout/form-shipping.php:57
25777
  #: templates/single-product/tabs/additional-information.php:24
25778
  msgid "Additional information"
25779
  msgstr ""
25780
 
25781
- #: includes/wc-template-functions.php:1754
25782
  #. translators: %s: reviews count
25783
  msgid "Reviews (%d)"
25784
  msgstr ""
25785
 
25786
- #: includes/wc-template-functions.php:2220
25787
  msgid "Place order"
25788
  msgstr ""
25789
 
25790
- #: includes/wc-template-functions.php:2694
25791
  msgid "Update country"
25792
  msgstr ""
25793
 
25794
- #: includes/wc-template-functions.php:2761
25795
- #: includes/wc-template-functions.php:2928
25796
- #: includes/wc-template-functions.php:2945
25797
  msgid "Choose an option"
25798
  msgstr ""
25799
 
25800
- #: includes/wc-template-functions.php:3439
25801
  #. translators: 1: rating 2: rating count
25802
  msgid "Rated %1$s out of 5 based on %2$s customer rating"
25803
  msgid_plural "Rated %1$s out of 5 based on %2$s customer ratings"
25804
  msgstr[0] ""
25805
  msgstr[1] ""
25806
 
25807
- #: includes/wc-template-functions.php:3485
25808
  msgid "Your cart is currently empty."
25809
  msgstr ""
25810
 
@@ -26967,7 +26973,7 @@ msgctxt "Canadian Tax Rates"
26967
  msgid "GST"
26968
  msgstr ""
26969
 
26970
- #: i18n/states/US.php:24 i18n/states.php:1290
26971
  msgctxt "US state of Georgia"
26972
  msgid "Georgia"
26973
  msgstr ""
@@ -27099,7 +27105,7 @@ msgctxt "slug"
27099
  msgid "product"
27100
  msgstr ""
27101
 
27102
- #: includes/wc-product-functions.php:224
27103
  msgctxt "slug"
27104
  msgid "uncategorized"
27105
  msgstr ""
@@ -27115,7 +27121,7 @@ msgctxt "default-slug"
27115
  msgid "product"
27116
  msgstr ""
27117
 
27118
- #: includes/admin/class-wc-admin-setup-wizard.php:1560
27119
  #: includes/gateways/cheque/class-wc-gateway-cheque.php:31
27120
  #: includes/gateways/cheque/class-wc-gateway-cheque.php:67
27121
  msgctxt "Check payment method"
@@ -27420,12 +27426,12 @@ msgctxt "Price range: from-to"
27420
  msgid "%1$s &ndash; %2$s"
27421
  msgstr ""
27422
 
27423
- #: includes/wc-template-functions.php:2161
27424
  msgctxt "breadcrumb"
27425
  msgid "Home"
27426
  msgstr ""
27427
 
27428
- #: includes/wc-template-functions.php:3457
27429
  msgctxt "min_price"
27430
  msgid "From:"
27431
  msgstr ""
2
  # This file is distributed under the same license as the WooCommerce package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce 3.6.3\n"
6
  "Report-Msgid-Bugs-To: https://github.com/woocommerce/woocommerce/issues\n"
7
+ "POT-Creation-Date: 2019-05-16 17:15:30+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
1530
  msgstr ""
1531
 
1532
  #: i18n/states/BG.php:22 i18n/states/US.php:40 i18n/states.php:151
1533
+ #: i18n/states.php:1307
1534
  msgid "Montana"
1535
  msgstr ""
1536
 
3541
  msgstr ""
3542
 
3543
  #: i18n/states/LR.php:23 i18n/states/US.php:34 i18n/states.php:711
3544
+ #: i18n/states.php:1301
3545
  msgid "Maryland"
3546
  msgstr ""
3547
 
4850
  msgid "Vrancea"
4851
  msgstr ""
4852
 
4853
+ #: i18n/states/TH.php:14 i18n/states.php:1085
4854
  msgid "Amnat Charoen"
4855
  msgstr ""
4856
 
4857
+ #: i18n/states/TH.php:15 i18n/states.php:1086
4858
  msgid "Ang Thong"
4859
  msgstr ""
4860
 
4861
+ #: i18n/states/TH.php:16 i18n/states.php:1087
4862
  msgid "Ayutthaya"
4863
  msgstr ""
4864
 
4865
+ #: i18n/states/TH.php:17 i18n/states.php:1088
4866
  msgid "Bangkok"
4867
  msgstr ""
4868
 
4869
+ #: i18n/states/TH.php:18 i18n/states.php:1089
4870
  msgid "Bueng Kan"
4871
  msgstr ""
4872
 
4873
+ #: i18n/states/TH.php:19 i18n/states.php:1090
4874
  msgid "Buri Ram"
4875
  msgstr ""
4876
 
4877
+ #: i18n/states/TH.php:20 i18n/states.php:1091
4878
  msgid "Chachoengsao"
4879
  msgstr ""
4880
 
4881
+ #: i18n/states/TH.php:21 i18n/states.php:1092
4882
  msgid "Chai Nat"
4883
  msgstr ""
4884
 
4885
+ #: i18n/states/TH.php:22 i18n/states.php:1093
4886
  msgid "Chaiyaphum"
4887
  msgstr ""
4888
 
4889
+ #: i18n/states/TH.php:23 i18n/states.php:1094
4890
  msgid "Chanthaburi"
4891
  msgstr ""
4892
 
4893
+ #: i18n/states/TH.php:24 i18n/states.php:1095
4894
  msgid "Chiang Mai"
4895
  msgstr ""
4896
 
4897
+ #: i18n/states/TH.php:25 i18n/states.php:1096
4898
  msgid "Chiang Rai"
4899
  msgstr ""
4900
 
4901
+ #: i18n/states/TH.php:26 i18n/states.php:1097
4902
  msgid "Chonburi"
4903
  msgstr ""
4904
 
4905
+ #: i18n/states/TH.php:27 i18n/states.php:1098
4906
  msgid "Chumphon"
4907
  msgstr ""
4908
 
4909
+ #: i18n/states/TH.php:28 i18n/states.php:1099
4910
  msgid "Kalasin"
4911
  msgstr ""
4912
 
4913
+ #: i18n/states/TH.php:29 i18n/states.php:1100
4914
  msgid "Kamphaeng Phet"
4915
  msgstr ""
4916
 
4917
+ #: i18n/states/TH.php:30 i18n/states.php:1101
4918
  msgid "Kanchanaburi"
4919
  msgstr ""
4920
 
4921
+ #: i18n/states/TH.php:31 i18n/states.php:1102
4922
  msgid "Khon Kaen"
4923
  msgstr ""
4924
 
4925
+ #: i18n/states/TH.php:32 i18n/states.php:1103
4926
  msgid "Krabi"
4927
  msgstr ""
4928
 
4929
+ #: i18n/states/TH.php:33 i18n/states.php:1104
4930
  msgid "Lampang"
4931
  msgstr ""
4932
 
4933
+ #: i18n/states/TH.php:34 i18n/states.php:1105
4934
  msgid "Lamphun"
4935
  msgstr ""
4936
 
4937
+ #: i18n/states/TH.php:35 i18n/states.php:1106
4938
  msgid "Loei"
4939
  msgstr ""
4940
 
4941
+ #: i18n/states/TH.php:36 i18n/states.php:1107
4942
  msgid "Lopburi"
4943
  msgstr ""
4944
 
4945
+ #: i18n/states/TH.php:37 i18n/states.php:1108
4946
  msgid "Mae Hong Son"
4947
  msgstr ""
4948
 
4949
+ #: i18n/states/TH.php:38 i18n/states.php:1109
4950
  msgid "Maha Sarakham"
4951
  msgstr ""
4952
 
4953
+ #: i18n/states/TH.php:39 i18n/states.php:1110
4954
  msgid "Mukdahan"
4955
  msgstr ""
4956
 
4957
+ #: i18n/states/TH.php:40 i18n/states.php:1111
4958
  msgid "Nakhon Nayok"
4959
  msgstr ""
4960
 
4961
+ #: i18n/states/TH.php:41 i18n/states.php:1112
4962
  msgid "Nakhon Pathom"
4963
  msgstr ""
4964
 
4965
+ #: i18n/states/TH.php:42 i18n/states.php:1113
4966
  msgid "Nakhon Phanom"
4967
  msgstr ""
4968
 
4969
+ #: i18n/states/TH.php:43 i18n/states.php:1114
4970
  msgid "Nakhon Ratchasima"
4971
  msgstr ""
4972
 
4973
+ #: i18n/states/TH.php:44 i18n/states.php:1115
4974
  msgid "Nakhon Sawan"
4975
  msgstr ""
4976
 
4977
+ #: i18n/states/TH.php:45 i18n/states.php:1116
4978
  msgid "Nakhon Si Thammarat"
4979
  msgstr ""
4980
 
4981
+ #: i18n/states/TH.php:46 i18n/states.php:1117
4982
  msgid "Nan"
4983
  msgstr ""
4984
 
4985
+ #: i18n/states/TH.php:47 i18n/states.php:1118
4986
  msgid "Narathiwat"
4987
  msgstr ""
4988
 
4989
+ #: i18n/states/TH.php:48 i18n/states.php:1119
4990
  msgid "Nong Bua Lam Phu"
4991
  msgstr ""
4992
 
4993
+ #: i18n/states/TH.php:49 i18n/states.php:1120
4994
  msgid "Nong Khai"
4995
  msgstr ""
4996
 
4997
+ #: i18n/states/TH.php:50 i18n/states.php:1121
4998
  msgid "Nonthaburi"
4999
  msgstr ""
5000
 
5001
+ #: i18n/states/TH.php:51 i18n/states.php:1122
5002
  msgid "Pathum Thani"
5003
  msgstr ""
5004
 
5005
+ #: i18n/states/TH.php:52 i18n/states.php:1123
5006
  msgid "Pattani"
5007
  msgstr ""
5008
 
5009
+ #: i18n/states/TH.php:53 i18n/states.php:1124
5010
  msgid "Phang Nga"
5011
  msgstr ""
5012
 
5013
+ #: i18n/states/TH.php:54 i18n/states.php:1125
5014
  msgid "Phatthalung"
5015
  msgstr ""
5016
 
5017
+ #: i18n/states/TH.php:55 i18n/states.php:1126
5018
  msgid "Phayao"
5019
  msgstr ""
5020
 
5021
+ #: i18n/states/TH.php:56 i18n/states.php:1127
5022
  msgid "Phetchabun"
5023
  msgstr ""
5024
 
5025
+ #: i18n/states/TH.php:57 i18n/states.php:1128
5026
  msgid "Phetchaburi"
5027
  msgstr ""
5028
 
5029
+ #: i18n/states/TH.php:58 i18n/states.php:1129
5030
  msgid "Phichit"
5031
  msgstr ""
5032
 
5033
+ #: i18n/states/TH.php:59 i18n/states.php:1130
5034
  msgid "Phitsanulok"
5035
  msgstr ""
5036
 
5037
+ #: i18n/states/TH.php:60 i18n/states.php:1131
5038
  msgid "Phrae"
5039
  msgstr ""
5040
 
5041
+ #: i18n/states/TH.php:61 i18n/states.php:1132
5042
  msgid "Phuket"
5043
  msgstr ""
5044
 
5045
+ #: i18n/states/TH.php:62 i18n/states.php:1133
5046
  msgid "Prachin Buri"
5047
  msgstr ""
5048
 
5049
+ #: i18n/states/TH.php:63 i18n/states.php:1134
5050
  msgid "Prachuap Khiri Khan"
5051
  msgstr ""
5052
 
5053
+ #: i18n/states/TH.php:64 i18n/states.php:1135
5054
  msgid "Ranong"
5055
  msgstr ""
5056
 
5057
+ #: i18n/states/TH.php:65 i18n/states.php:1136
5058
  msgid "Ratchaburi"
5059
  msgstr ""
5060
 
5061
+ #: i18n/states/TH.php:66 i18n/states.php:1137
5062
  msgid "Rayong"
5063
  msgstr ""
5064
 
5065
+ #: i18n/states/TH.php:67 i18n/states.php:1138
5066
  msgid "Roi Et"
5067
  msgstr ""
5068
 
5069
+ #: i18n/states/TH.php:68 i18n/states.php:1139
5070
  msgid "Sa Kaeo"
5071
  msgstr ""
5072
 
5073
+ #: i18n/states/TH.php:69 i18n/states.php:1140
5074
  msgid "Sakon Nakhon"
5075
  msgstr ""
5076
 
5077
+ #: i18n/states/TH.php:70 i18n/states.php:1141
5078
  msgid "Samut Prakan"
5079
  msgstr ""
5080
 
5081
+ #: i18n/states/TH.php:71 i18n/states.php:1142
5082
  msgid "Samut Sakhon"
5083
  msgstr ""
5084
 
5085
+ #: i18n/states/TH.php:72 i18n/states.php:1143
5086
  msgid "Samut Songkhram"
5087
  msgstr ""
5088
 
5089
+ #: i18n/states/TH.php:73 i18n/states.php:1144
5090
  msgid "Saraburi"
5091
  msgstr ""
5092
 
5093
+ #: i18n/states/TH.php:74 i18n/states.php:1145
5094
  msgid "Satun"
5095
  msgstr ""
5096
 
5097
+ #: i18n/states/TH.php:75 i18n/states.php:1146
5098
  msgid "Sing Buri"
5099
  msgstr ""
5100
 
5101
+ #: i18n/states/TH.php:76 i18n/states.php:1147
5102
  msgid "Sisaket"
5103
  msgstr ""
5104
 
5105
+ #: i18n/states/TH.php:77 i18n/states.php:1148
5106
  msgid "Songkhla"
5107
  msgstr ""
5108
 
5109
+ #: i18n/states/TH.php:78 i18n/states.php:1149
5110
  msgid "Sukhothai"
5111
  msgstr ""
5112
 
5113
+ #: i18n/states/TH.php:79 i18n/states.php:1150
5114
  msgid "Suphan Buri"
5115
  msgstr ""
5116
 
5117
+ #: i18n/states/TH.php:80 i18n/states.php:1151
5118
  msgid "Surat Thani"
5119
  msgstr ""
5120
 
5121
+ #: i18n/states/TH.php:81 i18n/states.php:1152
5122
  msgid "Surin"
5123
  msgstr ""
5124
 
5125
+ #: i18n/states/TH.php:82 i18n/states.php:1153
5126
  msgid "Tak"
5127
  msgstr ""
5128
 
5129
+ #: i18n/states/TH.php:83 i18n/states.php:1154
5130
  msgid "Trang"
5131
  msgstr ""
5132
 
5133
+ #: i18n/states/TH.php:84 i18n/states.php:1155
5134
  msgid "Trat"
5135
  msgstr ""
5136
 
5137
+ #: i18n/states/TH.php:85 i18n/states.php:1156
5138
  msgid "Ubon Ratchathani"
5139
  msgstr ""
5140
 
5141
+ #: i18n/states/TH.php:86 i18n/states.php:1157
5142
  msgid "Udon Thani"
5143
  msgstr ""
5144
 
5145
+ #: i18n/states/TH.php:87 i18n/states.php:1158
5146
  msgid "Uthai Thani"
5147
  msgstr ""
5148
 
5149
+ #: i18n/states/TH.php:88 i18n/states.php:1159
5150
  msgid "Uttaradit"
5151
  msgstr ""
5152
 
5153
+ #: i18n/states/TH.php:89 i18n/states.php:1160
5154
  msgid "Yala"
5155
  msgstr ""
5156
 
5157
+ #: i18n/states/TH.php:90 i18n/states.php:1161
5158
  msgid "Yasothon"
5159
  msgstr ""
5160
 
5161
+ #: i18n/states/TR.php:14 i18n/states.php:1164
5162
  msgid "Adana"
5163
  msgstr ""
5164
 
5165
+ #: i18n/states/TR.php:15 i18n/states.php:1165
5166
  msgid "Ad&#305;yaman"
5167
  msgstr ""
5168
 
5169
+ #: i18n/states/TR.php:16 i18n/states.php:1166
5170
  msgid "Afyon"
5171
  msgstr ""
5172
 
5173
+ #: i18n/states/TR.php:17 i18n/states.php:1167
5174
  msgid "A&#287;r&#305;"
5175
  msgstr ""
5176
 
5177
+ #: i18n/states/TR.php:18 i18n/states.php:1168
5178
  msgid "Amasya"
5179
  msgstr ""
5180
 
5181
+ #: i18n/states/TR.php:19 i18n/states.php:1169
5182
  msgid "Ankara"
5183
  msgstr ""
5184
 
5185
+ #: i18n/states/TR.php:20 i18n/states.php:1170
5186
  msgid "Antalya"
5187
  msgstr ""
5188
 
5189
+ #: i18n/states/TR.php:21 i18n/states.php:1171
5190
  msgid "Artvin"
5191
  msgstr ""
5192
 
5193
+ #: i18n/states/TR.php:22 i18n/states.php:1172
5194
  msgid "Ayd&#305;n"
5195
  msgstr ""
5196
 
5197
+ #: i18n/states/TR.php:23 i18n/states.php:1173
5198
  msgid "Bal&#305;kesir"
5199
  msgstr ""
5200
 
5201
+ #: i18n/states/TR.php:24 i18n/states.php:1174
5202
  msgid "Bilecik"
5203
  msgstr ""
5204
 
5205
+ #: i18n/states/TR.php:25 i18n/states.php:1175
5206
  msgid "Bing&#246;l"
5207
  msgstr ""
5208
 
5209
+ #: i18n/states/TR.php:26 i18n/states.php:1176
5210
  msgid "Bitlis"
5211
  msgstr ""
5212
 
5213
+ #: i18n/states/TR.php:27 i18n/states.php:1177
5214
  msgid "Bolu"
5215
  msgstr ""
5216
 
5217
+ #: i18n/states/TR.php:28 i18n/states.php:1178
5218
  msgid "Burdur"
5219
  msgstr ""
5220
 
5221
+ #: i18n/states/TR.php:29 i18n/states.php:1179
5222
  msgid "Bursa"
5223
  msgstr ""
5224
 
5225
+ #: i18n/states/TR.php:30 i18n/states.php:1180
5226
  msgid "&#199;anakkale"
5227
  msgstr ""
5228
 
5229
+ #: i18n/states/TR.php:31 i18n/states.php:1181
5230
  msgid "&#199;ank&#305;r&#305;"
5231
  msgstr ""
5232
 
5233
+ #: i18n/states/TR.php:32 i18n/states.php:1182
5234
  msgid "&#199;orum"
5235
  msgstr ""
5236
 
5237
+ #: i18n/states/TR.php:33 i18n/states.php:1183
5238
  msgid "Denizli"
5239
  msgstr ""
5240
 
5241
+ #: i18n/states/TR.php:34 i18n/states.php:1184
5242
  msgid "Diyarbak&#305;r"
5243
  msgstr ""
5244
 
5245
+ #: i18n/states/TR.php:35 i18n/states.php:1185
5246
  msgid "Edirne"
5247
  msgstr ""
5248
 
5249
+ #: i18n/states/TR.php:36 i18n/states.php:1186
5250
  msgid "Elaz&#305;&#287;"
5251
  msgstr ""
5252
 
5253
+ #: i18n/states/TR.php:37 i18n/states.php:1187
5254
  msgid "Erzincan"
5255
  msgstr ""
5256
 
5257
+ #: i18n/states/TR.php:38 i18n/states.php:1188
5258
  msgid "Erzurum"
5259
  msgstr ""
5260
 
5261
+ #: i18n/states/TR.php:39 i18n/states.php:1189
5262
  msgid "Eski&#351;ehir"
5263
  msgstr ""
5264
 
5265
+ #: i18n/states/TR.php:40 i18n/states.php:1190
5266
  msgid "Gaziantep"
5267
  msgstr ""
5268
 
5269
+ #: i18n/states/TR.php:41 i18n/states.php:1191
5270
  msgid "Giresun"
5271
  msgstr ""
5272
 
5273
+ #: i18n/states/TR.php:42 i18n/states.php:1192
5274
  msgid "G&#252;m&#252;&#351;hane"
5275
  msgstr ""
5276
 
5277
+ #: i18n/states/TR.php:43 i18n/states.php:1193
5278
  msgid "Hakkari"
5279
  msgstr ""
5280
 
5281
+ #: i18n/states/TR.php:44 i18n/states.php:1194
5282
  msgid "Hatay"
5283
  msgstr ""
5284
 
5285
+ #: i18n/states/TR.php:45 i18n/states.php:1195
5286
  msgid "Isparta"
5287
  msgstr ""
5288
 
5289
+ #: i18n/states/TR.php:46 i18n/states.php:1196
5290
  msgid "&#304;&#231;el"
5291
  msgstr ""
5292
 
5293
+ #: i18n/states/TR.php:47 i18n/states.php:1197
5294
  msgid "&#304;stanbul"
5295
  msgstr ""
5296
 
5297
+ #: i18n/states/TR.php:48 i18n/states.php:1198
5298
  msgid "&#304;zmir"
5299
  msgstr ""
5300
 
5301
+ #: i18n/states/TR.php:49 i18n/states.php:1199
5302
  msgid "Kars"
5303
  msgstr ""
5304
 
5305
+ #: i18n/states/TR.php:50 i18n/states.php:1200
5306
  msgid "Kastamonu"
5307
  msgstr ""
5308
 
5309
+ #: i18n/states/TR.php:51 i18n/states.php:1201
5310
  msgid "Kayseri"
5311
  msgstr ""
5312
 
5313
+ #: i18n/states/TR.php:52 i18n/states.php:1202
5314
  msgid "K&#305;rklareli"
5315
  msgstr ""
5316
 
5317
+ #: i18n/states/TR.php:53 i18n/states.php:1203
5318
  msgid "K&#305;r&#351;ehir"
5319
  msgstr ""
5320
 
5321
+ #: i18n/states/TR.php:54 i18n/states.php:1204
5322
  msgid "Kocaeli"
5323
  msgstr ""
5324
 
5325
+ #: i18n/states/TR.php:55 i18n/states.php:1205
5326
  msgid "Konya"
5327
  msgstr ""
5328
 
5329
+ #: i18n/states/TR.php:56 i18n/states.php:1206
5330
  msgid "K&#252;tahya"
5331
  msgstr ""
5332
 
5333
+ #: i18n/states/TR.php:57 i18n/states.php:1207
5334
  msgid "Malatya"
5335
  msgstr ""
5336
 
5337
+ #: i18n/states/TR.php:58 i18n/states.php:1208
5338
  msgid "Manisa"
5339
  msgstr ""
5340
 
5341
+ #: i18n/states/TR.php:59 i18n/states.php:1209
5342
  msgid "Kahramanmara&#351;"
5343
  msgstr ""
5344
 
5345
+ #: i18n/states/TR.php:60 i18n/states.php:1210
5346
  msgid "Mardin"
5347
  msgstr ""
5348
 
5349
+ #: i18n/states/TR.php:61 i18n/states.php:1211
5350
  msgid "Mu&#287;la"
5351
  msgstr ""
5352
 
5353
+ #: i18n/states/TR.php:62 i18n/states.php:1212
5354
  msgid "Mu&#351;"
5355
  msgstr ""
5356
 
5357
+ #: i18n/states/TR.php:63 i18n/states.php:1213
5358
  msgid "Nev&#351;ehir"
5359
  msgstr ""
5360
 
5361
+ #: i18n/states/TR.php:64 i18n/states.php:1214
5362
  msgid "Ni&#287;de"
5363
  msgstr ""
5364
 
5365
+ #: i18n/states/TR.php:65 i18n/states.php:1215
5366
  msgid "Ordu"
5367
  msgstr ""
5368
 
5369
+ #: i18n/states/TR.php:66 i18n/states.php:1216
5370
  msgid "Rize"
5371
  msgstr ""
5372
 
5373
+ #: i18n/states/TR.php:67 i18n/states.php:1217
5374
  msgid "Sakarya"
5375
  msgstr ""
5376
 
5377
+ #: i18n/states/TR.php:68 i18n/states.php:1218
5378
  msgid "Samsun"
5379
  msgstr ""
5380
 
5381
+ #: i18n/states/TR.php:69 i18n/states.php:1219
5382
  msgid "Siirt"
5383
  msgstr ""
5384
 
5385
+ #: i18n/states/TR.php:70 i18n/states.php:1220
5386
  msgid "Sinop"
5387
  msgstr ""
5388
 
5389
+ #: i18n/states/TR.php:71 i18n/states.php:1221
5390
  msgid "Sivas"
5391
  msgstr ""
5392
 
5393
+ #: i18n/states/TR.php:72 i18n/states.php:1222
5394
  msgid "Tekirda&#287;"
5395
  msgstr ""
5396
 
5397
+ #: i18n/states/TR.php:73 i18n/states.php:1223
5398
  msgid "Tokat"
5399
  msgstr ""
5400
 
5401
+ #: i18n/states/TR.php:74 i18n/states.php:1224
5402
  msgid "Trabzon"
5403
  msgstr ""
5404
 
5405
+ #: i18n/states/TR.php:75 i18n/states.php:1225
5406
  msgid "Tunceli"
5407
  msgstr ""
5408
 
5409
+ #: i18n/states/TR.php:76 i18n/states.php:1226
5410
  msgid "&#350;anl&#305;urfa"
5411
  msgstr ""
5412
 
5413
+ #: i18n/states/TR.php:77 i18n/states.php:1227
5414
  msgid "U&#351;ak"
5415
  msgstr ""
5416
 
5417
+ #: i18n/states/TR.php:78 i18n/states.php:1228
5418
  msgid "Van"
5419
  msgstr ""
5420
 
5421
+ #: i18n/states/TR.php:79 i18n/states.php:1229
5422
  msgid "Yozgat"
5423
  msgstr ""
5424
 
5425
+ #: i18n/states/TR.php:80 i18n/states.php:1230
5426
  msgid "Zonguldak"
5427
  msgstr ""
5428
 
5429
+ #: i18n/states/TR.php:81 i18n/states.php:1231
5430
  msgid "Aksaray"
5431
  msgstr ""
5432
 
5433
+ #: i18n/states/TR.php:82 i18n/states.php:1232
5434
  msgid "Bayburt"
5435
  msgstr ""
5436
 
5437
+ #: i18n/states/TR.php:83 i18n/states.php:1233
5438
  msgid "Karaman"
5439
  msgstr ""
5440
 
5441
+ #: i18n/states/TR.php:84 i18n/states.php:1234
5442
  msgid "K&#305;r&#305;kkale"
5443
  msgstr ""
5444
 
5445
+ #: i18n/states/TR.php:85 i18n/states.php:1235
5446
  msgid "Batman"
5447
  msgstr ""
5448
 
5449
+ #: i18n/states/TR.php:86 i18n/states.php:1236
5450
  msgid "&#350;&#305;rnak"
5451
  msgstr ""
5452
 
5453
+ #: i18n/states/TR.php:87 i18n/states.php:1237
5454
  msgid "Bart&#305;n"
5455
  msgstr ""
5456
 
5457
+ #: i18n/states/TR.php:88 i18n/states.php:1238
5458
  msgid "Ardahan"
5459
  msgstr ""
5460
 
5461
+ #: i18n/states/TR.php:89 i18n/states.php:1239
5462
  msgid "I&#287;d&#305;r"
5463
  msgstr ""
5464
 
5465
+ #: i18n/states/TR.php:90 i18n/states.php:1240
5466
  msgid "Yalova"
5467
  msgstr ""
5468
 
5469
+ #: i18n/states/TR.php:91 i18n/states.php:1241
5470
  msgid "Karab&#252;k"
5471
  msgstr ""
5472
 
5473
+ #: i18n/states/TR.php:92 i18n/states.php:1242
5474
  msgid "Kilis"
5475
  msgstr ""
5476
 
5477
+ #: i18n/states/TR.php:93 i18n/states.php:1243
5478
  msgid "Osmaniye"
5479
  msgstr ""
5480
 
5481
+ #: i18n/states/TR.php:94 i18n/states.php:1244
5482
  msgid "D&#252;zce"
5483
  msgstr ""
5484
 
5485
+ #: i18n/states/TZ.php:14 i18n/states.php:1247
5486
  msgid "Arusha"
5487
  msgstr ""
5488
 
5489
+ #: i18n/states/TZ.php:15 i18n/states.php:1248
5490
  msgid "Dar es Salaam"
5491
  msgstr ""
5492
 
5493
+ #: i18n/states/TZ.php:16 i18n/states.php:1249
5494
  msgid "Dodoma"
5495
  msgstr ""
5496
 
5497
+ #: i18n/states/TZ.php:17 i18n/states.php:1250
5498
  msgid "Iringa"
5499
  msgstr ""
5500
 
5501
+ #: i18n/states/TZ.php:18 i18n/states.php:1251
5502
  msgid "Kagera"
5503
  msgstr ""
5504
 
5505
+ #: i18n/states/TZ.php:19 i18n/states.php:1252
5506
  msgid "Pemba North"
5507
  msgstr ""
5508
 
5509
+ #: i18n/states/TZ.php:20 i18n/states.php:1253
5510
  msgid "Zanzibar North"
5511
  msgstr ""
5512
 
5513
+ #: i18n/states/TZ.php:21 i18n/states.php:1254
5514
  msgid "Kigoma"
5515
  msgstr ""
5516
 
5517
+ #: i18n/states/TZ.php:22 i18n/states.php:1255
5518
  msgid "Kilimanjaro"
5519
  msgstr ""
5520
 
5521
+ #: i18n/states/TZ.php:23 i18n/states.php:1256
5522
  msgid "Pemba South"
5523
  msgstr ""
5524
 
5525
+ #: i18n/states/TZ.php:24 i18n/states.php:1257
5526
  msgid "Zanzibar South"
5527
  msgstr ""
5528
 
5529
+ #: i18n/states/TZ.php:25 i18n/states.php:1258
5530
  msgid "Lindi"
5531
  msgstr ""
5532
 
5533
+ #: i18n/states/TZ.php:26 i18n/states.php:1259
5534
  msgid "Mara"
5535
  msgstr ""
5536
 
5537
+ #: i18n/states/TZ.php:27 i18n/states.php:1260
5538
  msgid "Mbeya"
5539
  msgstr ""
5540
 
5541
+ #: i18n/states/TZ.php:28 i18n/states.php:1261
5542
  msgid "Zanzibar West"
5543
  msgstr ""
5544
 
5545
+ #: i18n/states/TZ.php:29 i18n/states.php:1262
5546
  msgid "Morogoro"
5547
  msgstr ""
5548
 
5549
+ #: i18n/states/TZ.php:30 i18n/states.php:1263
5550
  msgid "Mtwara"
5551
  msgstr ""
5552
 
5553
+ #: i18n/states/TZ.php:31 i18n/states.php:1264
5554
  msgid "Mwanza"
5555
  msgstr ""
5556
 
5557
+ #: i18n/states/TZ.php:32 i18n/states.php:1265
5558
  msgid "Coast"
5559
  msgstr ""
5560
 
5561
+ #: i18n/states/TZ.php:33 i18n/states.php:1266
5562
  msgid "Rukwa"
5563
  msgstr ""
5564
 
5565
+ #: i18n/states/TZ.php:34 i18n/states.php:1267
5566
  msgid "Ruvuma"
5567
  msgstr ""
5568
 
5569
+ #: i18n/states/TZ.php:35 i18n/states.php:1268
5570
  msgid "Shinyanga"
5571
  msgstr ""
5572
 
5573
+ #: i18n/states/TZ.php:36 i18n/states.php:1269
5574
  msgid "Singida"
5575
  msgstr ""
5576
 
5577
+ #: i18n/states/TZ.php:37 i18n/states.php:1270
5578
  msgid "Tabora"
5579
  msgstr ""
5580
 
5581
+ #: i18n/states/TZ.php:38 i18n/states.php:1271
5582
  msgid "Tanga"
5583
  msgstr ""
5584
 
5585
+ #: i18n/states/TZ.php:39 i18n/states.php:1272
5586
  msgid "Manyara"
5587
  msgstr ""
5588
 
5589
+ #: i18n/states/TZ.php:40 i18n/states.php:1273
5590
  msgid "Geita"
5591
  msgstr ""
5592
 
5593
+ #: i18n/states/TZ.php:41 i18n/states.php:1274
5594
  msgid "Katavi"
5595
  msgstr ""
5596
 
5597
+ #: i18n/states/TZ.php:42 i18n/states.php:1275
5598
  msgid "Njombe"
5599
  msgstr ""
5600
 
5601
+ #: i18n/states/TZ.php:43 i18n/states.php:1276
5602
  msgid "Simiyu"
5603
  msgstr ""
5604
 
5638
  msgid "Wake Island"
5639
  msgstr ""
5640
 
5641
+ #: i18n/states/US.php:14 i18n/states.php:1281
5642
  msgid "Alabama"
5643
  msgstr ""
5644
 
5645
+ #: i18n/states/US.php:15 i18n/states.php:1282
5646
  msgid "Alaska"
5647
  msgstr ""
5648
 
5649
+ #: i18n/states/US.php:16 i18n/states.php:1283
5650
  msgid "Arizona"
5651
  msgstr ""
5652
 
5653
+ #: i18n/states/US.php:17 i18n/states.php:1284
5654
  msgid "Arkansas"
5655
  msgstr ""
5656
 
5657
+ #: i18n/states/US.php:18 i18n/states.php:1285
5658
  msgid "California"
5659
  msgstr ""
5660
 
5661
+ #: i18n/states/US.php:19 i18n/states.php:1286
5662
  msgid "Colorado"
5663
  msgstr ""
5664
 
5665
+ #: i18n/states/US.php:20 i18n/states.php:1287
5666
  msgid "Connecticut"
5667
  msgstr ""
5668
 
5669
+ #: i18n/states/US.php:21 i18n/states.php:1288
5670
  msgid "Delaware"
5671
  msgstr ""
5672
 
5673
+ #: i18n/states/US.php:22 i18n/states.php:1289
5674
  msgid "District Of Columbia"
5675
  msgstr ""
5676
 
5677
+ #: i18n/states/US.php:23 i18n/states.php:1290
5678
  msgid "Florida"
5679
  msgstr ""
5680
 
5681
+ #: i18n/states/US.php:25 i18n/states.php:1292
5682
  msgid "Hawaii"
5683
  msgstr ""
5684
 
5685
+ #: i18n/states/US.php:26 i18n/states.php:1293
5686
  msgid "Idaho"
5687
  msgstr ""
5688
 
5689
+ #: i18n/states/US.php:27 i18n/states.php:1294
5690
  msgid "Illinois"
5691
  msgstr ""
5692
 
5693
+ #: i18n/states/US.php:28 i18n/states.php:1295
5694
  msgid "Indiana"
5695
  msgstr ""
5696
 
5697
+ #: i18n/states/US.php:29 i18n/states.php:1296
5698
  msgid "Iowa"
5699
  msgstr ""
5700
 
5701
+ #: i18n/states/US.php:30 i18n/states.php:1297
5702
  msgid "Kansas"
5703
  msgstr ""
5704
 
5705
+ #: i18n/states/US.php:31 i18n/states.php:1298
5706
  msgid "Kentucky"
5707
  msgstr ""
5708
 
5709
+ #: i18n/states/US.php:32 i18n/states.php:1299
5710
  msgid "Louisiana"
5711
  msgstr ""
5712
 
5713
+ #: i18n/states/US.php:33 i18n/states.php:1300
5714
  msgid "Maine"
5715
  msgstr ""
5716
 
5717
+ #: i18n/states/US.php:35 i18n/states.php:1302
5718
  msgid "Massachusetts"
5719
  msgstr ""
5720
 
5721
+ #: i18n/states/US.php:36 i18n/states.php:1303
5722
  msgid "Michigan"
5723
  msgstr ""
5724
 
5725
+ #: i18n/states/US.php:37 i18n/states.php:1304
5726
  msgid "Minnesota"
5727
  msgstr ""
5728
 
5729
+ #: i18n/states/US.php:38 i18n/states.php:1305
5730
  msgid "Mississippi"
5731
  msgstr ""
5732
 
5733
+ #: i18n/states/US.php:39 i18n/states.php:1306
5734
  msgid "Missouri"
5735
  msgstr ""
5736
 
5737
+ #: i18n/states/US.php:41 i18n/states.php:1308
5738
  msgid "Nebraska"
5739
  msgstr ""
5740
 
5741
+ #: i18n/states/US.php:42 i18n/states.php:1309
5742
  msgid "Nevada"
5743
  msgstr ""
5744
 
5745
+ #: i18n/states/US.php:43 i18n/states.php:1310
5746
  msgid "New Hampshire"
5747
  msgstr ""
5748
 
5749
+ #: i18n/states/US.php:44 i18n/states.php:1311
5750
  msgid "New Jersey"
5751
  msgstr ""
5752
 
5753
+ #: i18n/states/US.php:45 i18n/states.php:1312
5754
  msgid "New Mexico"
5755
  msgstr ""
5756
 
5757
+ #: i18n/states/US.php:46 i18n/states.php:1313
5758
  msgid "New York"
5759
  msgstr ""
5760
 
5761
+ #: i18n/states/US.php:47 i18n/states.php:1314
5762
  msgid "North Carolina"
5763
  msgstr ""
5764
 
5765
+ #: i18n/states/US.php:48 i18n/states.php:1315
5766
  msgid "North Dakota"
5767
  msgstr ""
5768
 
5769
+ #: i18n/states/US.php:49 i18n/states.php:1316
5770
  msgid "Ohio"
5771
  msgstr ""
5772
 
5773
+ #: i18n/states/US.php:50 i18n/states.php:1317
5774
  msgid "Oklahoma"
5775
  msgstr ""
5776
 
5777
+ #: i18n/states/US.php:51 i18n/states.php:1318
5778
  msgid "Oregon"
5779
  msgstr ""
5780
 
5781
+ #: i18n/states/US.php:52 i18n/states.php:1319
5782
  msgid "Pennsylvania"
5783
  msgstr ""
5784
 
5785
+ #: i18n/states/US.php:53 i18n/states.php:1320
5786
  msgid "Rhode Island"
5787
  msgstr ""
5788
 
5789
+ #: i18n/states/US.php:54 i18n/states.php:1321
5790
  msgid "South Carolina"
5791
  msgstr ""
5792
 
5793
+ #: i18n/states/US.php:55 i18n/states.php:1322
5794
  msgid "South Dakota"
5795
  msgstr ""
5796
 
5797
+ #: i18n/states/US.php:56 i18n/states.php:1323
5798
  msgid "Tennessee"
5799
  msgstr ""
5800
 
5801
+ #: i18n/states/US.php:57 i18n/states.php:1324
5802
  msgid "Texas"
5803
  msgstr ""
5804
 
5805
+ #: i18n/states/US.php:58 i18n/states.php:1325
5806
  msgid "Utah"
5807
  msgstr ""
5808
 
5809
+ #: i18n/states/US.php:59 i18n/states.php:1326
5810
  msgid "Vermont"
5811
  msgstr ""
5812
 
5813
+ #: i18n/states/US.php:60 i18n/states.php:1327
5814
  msgid "Virginia"
5815
  msgstr ""
5816
 
5817
+ #: i18n/states/US.php:61 i18n/states.php:1328
5818
  msgid "Washington"
5819
  msgstr ""
5820
 
5821
+ #: i18n/states/US.php:62 i18n/states.php:1329
5822
  msgid "West Virginia"
5823
  msgstr ""
5824
 
5825
+ #: i18n/states/US.php:63 i18n/states.php:1330
5826
  msgid "Wisconsin"
5827
  msgstr ""
5828
 
5829
+ #: i18n/states/US.php:64 i18n/states.php:1331
5830
  msgid "Wyoming"
5831
  msgstr ""
5832
 
5833
+ #: i18n/states/US.php:65 i18n/states.php:1332
5834
  msgid "Armed Forces (AA)"
5835
  msgstr ""
5836
 
5837
+ #: i18n/states/US.php:66 i18n/states.php:1333
5838
  msgid "Armed Forces (AE)"
5839
  msgstr ""
5840
 
5841
+ #: i18n/states/US.php:67 i18n/states.php:1334
5842
  msgid "Armed Forces (AP)"
5843
  msgstr ""
5844
 
5845
+ #: i18n/states/ZA.php:14 i18n/states.php:1339
5846
  msgid "Eastern Cape"
5847
  msgstr ""
5848
 
5849
+ #: i18n/states/ZA.php:15 i18n/states.php:1340
5850
  msgid "Free State"
5851
  msgstr ""
5852
 
5853
+ #: i18n/states/ZA.php:16 i18n/states.php:1341
5854
  msgid "Gauteng"
5855
  msgstr ""
5856
 
5857
+ #: i18n/states/ZA.php:17 i18n/states.php:1342
5858
  msgid "KwaZulu-Natal"
5859
  msgstr ""
5860
 
5861
+ #: i18n/states/ZA.php:18 i18n/states.php:1343
5862
  msgid "Limpopo"
5863
  msgstr ""
5864
 
5865
+ #: i18n/states/ZA.php:19 i18n/states.php:1344
5866
  msgid "Mpumalanga"
5867
  msgstr ""
5868
 
5869
+ #: i18n/states/ZA.php:20 i18n/states.php:1345
5870
  msgid "Northern Cape"
5871
  msgstr ""
5872
 
5873
+ #: i18n/states/ZA.php:21 i18n/states.php:1346
5874
  msgid "North West"
5875
  msgstr ""
5876
 
5877
+ #: i18n/states/ZA.php:22 i18n/states.php:1347
5878
  msgid "Western Cape"
5879
  msgstr ""
5880
 
6052
 
6053
  #: includes/abstracts/abstract-wc-product.php:1985
6054
  #: includes/admin/class-wc-admin-reports.php:108
6055
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:276
6056
  #: includes/admin/reports/class-wc-report-stock.php:118
6057
+ #: includes/wc-product-functions.php:815
6058
  msgid "Out of stock"
6059
  msgstr ""
6060
 
6530
 
6531
  #: includes/abstracts/abstract-wc-settings-api.php:774
6532
  #: includes/admin/class-wc-admin-menus.php:328
6533
+ #: includes/admin/class-wc-admin-settings.php:623
6534
  #: includes/admin/meta-boxes/views/html-product-attribute.php:56
6535
  msgid "Select all"
6536
  msgstr ""
6537
 
6538
  #: includes/abstracts/abstract-wc-settings-api.php:774
6539
+ #: includes/admin/class-wc-admin-settings.php:623
6540
  #: includes/admin/meta-boxes/views/html-product-attribute.php:57
6541
  msgid "Select none"
6542
  msgstr ""
6622
  #: includes/gateways/cheque/class-wc-gateway-cheque.php:71
6623
  #: includes/gateways/cod/class-wc-gateway-cod.php:122
6624
  #: includes/gateways/paypal/includes/settings-paypal.php:25
6625
+ #: includes/wc-template-functions.php:1737
6626
  #: templates/single-product/tabs/description.php:24
6627
  msgid "Description"
6628
  msgstr ""
6655
 
6656
  #: includes/admin/class-wc-admin-api-keys-table-list.php:96
6657
  #: includes/admin/class-wc-admin-webhooks-table-list.php:81
6658
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:83
6659
  #: includes/admin/meta-boxes/views/html-order-refund.php:29
6660
  #. translators: %s: API key ID.
6661
  #. translators: %s: webhook ID.
6886
  #: includes/admin/class-wc-admin-assets.php:423
6887
  #: includes/admin/settings/views/html-webhooks-edit.php:67
6888
  #: includes/class-wc-frontend-scripts.php:570
6889
+ #: includes/wc-template-functions.php:2714
6890
+ #: includes/wc-template-functions.php:2715
6891
  #: templates/cart/shipping-calculator.php:56
6892
  msgid "Select an option&hellip;"
6893
  msgstr ""
6946
  #: includes/admin/class-wc-admin-webhooks-table-list.php:48
6947
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:502
6948
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:661
6949
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:117
6950
  #: includes/admin/meta-boxes/views/html-product-attribute.php:17
6951
  #: includes/admin/meta-boxes/views/html-product-data-general.php:82
6952
  #: includes/admin/meta-boxes/views/html-variation-admin.php:370
7021
 
7022
  #: includes/admin/class-wc-admin-assets.php:315
7023
  #: includes/admin/class-wc-admin-post-types.php:761
7024
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:130
7025
  #: includes/admin/views/html-bulk-edit-product.php:200
7026
  #: includes/admin/views/html-quick-edit-product.php:159
7027
  msgid "Featured"
7310
  msgstr[0] ""
7311
  msgstr[1] ""
7312
 
7313
+ #: includes/admin/class-wc-admin-dashboard.php:253
7314
  #. translators: %s: order count
7315
  msgid "<strong>%s product</strong> low in stock"
7316
  msgid_plural "<strong>%s products</strong> low in stock"
7317
  msgstr[0] ""
7318
  msgstr[1] ""
7319
 
7320
+ #: includes/admin/class-wc-admin-dashboard.php:264
7321
  #. translators: %s: order count
7322
  msgid "<strong>%s product</strong> out of stock"
7323
  msgid_plural "<strong>%s products</strong> out of stock"
7324
  msgstr[0] ""
7325
  msgstr[1] ""
7326
 
7327
+ #: includes/admin/class-wc-admin-dashboard.php:307
7328
  #. translators: %s: rating
7329
  msgid "%s out of 5"
7330
  msgstr ""
7331
 
7332
+ #: includes/admin/class-wc-admin-dashboard.php:310
7333
  #. translators: %s: review author
7334
  msgid "reviewed by %s"
7335
  msgstr ""
7336
 
7337
+ #: includes/admin/class-wc-admin-dashboard.php:316
7338
  msgid "There are no product reviews yet."
7339
  msgstr ""
7340
 
7341
+ #: includes/admin/class-wc-admin-dashboard.php:347
7342
  msgid "Loading network orders"
7343
  msgstr ""
7344
 
7345
+ #: includes/admin/class-wc-admin-dashboard.php:354
7346
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:121
7347
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:169
7348
  #: includes/admin/reports/class-wc-report-downloads.php:87
7352
  msgid "Order"
7353
  msgstr ""
7354
 
7355
+ #: includes/admin/class-wc-admin-dashboard.php:355
7356
  #: includes/admin/class-wc-admin-menus.php:123
7357
  #: includes/admin/class-wc-admin-webhooks-table-list.php:49
7358
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:123
7363
  msgid "Status"
7364
  msgstr ""
7365
 
7366
+ #: includes/admin/class-wc-admin-dashboard.php:356
7367
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:126
7368
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:458
7369
  #: includes/admin/meta-boxes/views/html-order-item.php:100
7379
  msgid "Total"
7380
  msgstr ""
7381
 
7382
+ #: includes/admin/class-wc-admin-dashboard.php:365
7383
  #: includes/class-wc-post-types.php:388
7384
  msgid "No orders found"
7385
  msgstr ""
7931
 
7932
  #: includes/admin/class-wc-admin-pointers.php:250
7933
  #: includes/admin/views/html-notice-custom.php:12
7934
+ #: includes/admin/views/html-notice-legacy-shipping.php:14
7935
+ #: includes/admin/views/html-notice-no-shipping-methods.php:14
7936
  #: includes/admin/views/html-notice-secure-connection.php:12
7937
  #: includes/admin/views/html-notice-template-check.php:15
7938
  #: includes/admin/views/html-notice-updated.php:14
7939
+ #: includes/wc-template-functions.php:1021
7940
  msgid "Dismiss"
7941
  msgstr ""
7942
 
8235
  #: includes/admin/class-wc-admin-profile.php:105
8236
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:44
8237
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:95
8238
+ #: includes/class-wc-countries.php:630 includes/class-wc-form-handler.php:252
8239
  #: templates/myaccount/form-edit-account.php:27
8240
  msgid "First name"
8241
  msgstr ""
8244
  #: includes/admin/class-wc-admin-profile.php:109
8245
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:48
8246
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:99
8247
+ #: includes/class-wc-countries.php:637 includes/class-wc-form-handler.php:253
8248
  #: templates/myaccount/form-edit-account.php:31
8249
  msgid "Last name"
8250
  msgstr ""
8306
  #: includes/admin/settings/class-wc-settings-general.php:101
8307
  #: includes/admin/settings/class-wc-settings-tax.php:195
8308
  #: includes/admin/settings/views/html-settings-tax.php:28
8309
+ #: includes/class-wc-countries.php:691
8310
  #: templates/cart/shipping-calculator.php:82
8311
  msgid "Postcode / ZIP"
8312
  msgstr ""
8313
 
8314
  #: includes/admin/class-wc-admin-profile.php:73
8315
  #: includes/admin/class-wc-admin-profile.php:133
8316
+ #: includes/admin/class-wc-admin-settings.php:590
8317
+ #: includes/admin/class-wc-admin-settings.php:615
8318
  #: includes/admin/class-wc-admin-setup-wizard.php:435
8319
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:72
8320
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:123
8321
+ #: includes/class-wc-countries.php:652
8322
  msgid "Country"
8323
  msgstr ""
8324
 
8326
  #: includes/admin/class-wc-admin-profile.php:137
8327
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:76
8328
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:127
8329
+ #: includes/wc-template-functions.php:2688
8330
  #: templates/cart/shipping-calculator.php:31
8331
  msgid "Select a country&hellip;"
8332
  msgstr ""
8335
  #: includes/admin/class-wc-admin-profile.php:140
8336
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:79
8337
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:130
8338
+ #: includes/class-wc-countries.php:683
8339
  #: templates/cart/shipping-calculator.php:50
8340
  #: templates/cart/shipping-calculator.php:55
8341
  #: templates/cart/shipping-calculator.php:67
8350
  #: includes/admin/class-wc-admin-profile.php:85
8351
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:375
8352
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:87
8353
+ #: includes/class-wc-countries.php:1308
8354
  #: includes/customizer/class-wc-shop-customizer.php:679
8355
  msgid "Phone"
8356
  msgstr ""
8357
 
8358
  #: includes/admin/class-wc-admin-profile.php:89
8359
+ #: includes/admin/class-wc-admin-setup-wizard.php:2296
8360
  #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:84
8361
+ #: includes/class-wc-countries.php:1318 includes/class-wc-form-handler.php:255
8362
  #: templates/myaccount/form-edit-account.php:43
8363
  #: templates/myaccount/form-login.php:86
8364
  msgid "Email address"
8423
 
8424
  #: includes/admin/class-wc-admin-reports.php:99
8425
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:513
8426
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:124
8427
  #: includes/admin/meta-boxes/views/html-product-data-variations.php:74
8428
  #: includes/export/class-wc-product-csv-exporter.php:119
8429
  msgid "Stock"
8453
  msgid "Your settings have been saved."
8454
  msgstr ""
8455
 
8456
+ #: includes/admin/class-wc-admin-settings.php:141
8457
  msgid "The changes you made will be lost if you navigate away from this page."
8458
  msgstr ""
8459
 
8460
+ #: includes/admin/class-wc-admin-settings.php:142
8461
  msgid "Item moved up"
8462
  msgstr ""
8463
 
8464
+ #: includes/admin/class-wc-admin-settings.php:143
8465
  msgid "Item moved down"
8466
  msgstr ""
8467
 
8468
+ #: includes/admin/class-wc-admin-settings.php:144
8469
+ msgid ""
8470
+ "Selecting no country to sell to prevents from completing the checkout. "
8471
+ "Continue anyway?"
8472
+ msgstr ""
8473
+
8474
+ #: includes/admin/class-wc-admin-settings.php:524
8475
  msgid ""
8476
  "The settings of this image size have been disabled because its values are "
8477
  "being overwritten by a filter."
8478
  msgstr ""
8479
 
8480
+ #: includes/admin/class-wc-admin-settings.php:536
8481
  msgid "Hard crop?"
8482
  msgstr ""
8483
 
8484
+ #: includes/admin/class-wc-admin-settings.php:567
8485
  msgid "Select a page&hellip;"
8486
  msgstr ""
8487
 
8488
+ #: includes/admin/class-wc-admin-settings.php:590
8489
  #: includes/admin/class-wc-admin-setup-wizard.php:435
8490
  msgid "Choose a country&hellip;"
8491
  msgstr ""
8492
 
8493
+ #: includes/admin/class-wc-admin-settings.php:615
8494
  msgid "Choose countries&hellip;"
8495
  msgstr ""
8496
 
8497
+ #: includes/admin/class-wc-admin-settings.php:632
8498
  #: includes/wc-formatting-functions.php:1425
8499
  msgid "Day(s)"
8500
  msgstr ""
8501
 
8502
+ #: includes/admin/class-wc-admin-settings.php:633
8503
  #: includes/wc-formatting-functions.php:1426
8504
  msgid "Week(s)"
8505
  msgstr ""
8506
 
8507
+ #: includes/admin/class-wc-admin-settings.php:634
8508
  #: includes/wc-formatting-functions.php:1427
8509
  msgid "Month(s)"
8510
  msgstr ""
8511
 
8512
+ #: includes/admin/class-wc-admin-settings.php:635
8513
  #: includes/wc-formatting-functions.php:1428
8514
  msgid "Year(s)"
8515
  msgstr ""
8531
  msgstr ""
8532
 
8533
  #: includes/admin/class-wc-admin-setup-wizard.php:230
8534
+ #: includes/admin/class-wc-admin-setup-wizard.php:1732
8535
  msgid "Payment"
8536
  msgstr ""
8537
 
8589
 
8590
  #: includes/admin/class-wc-admin-setup-wizard.php:454
8591
  #: includes/admin/class-wc-admin-setup-wizard.php:456
8592
+ #: includes/class-wc-countries.php:782 includes/class-wc-countries.php:1055
8593
+ #: includes/class-wc-countries.php:1197
8594
  msgid "State"
8595
  msgstr ""
8596
 
8663
 
8664
  #: includes/admin/class-wc-admin-setup-wizard.php:702
8665
  #: includes/admin/class-wc-admin-setup-wizard.php:737
8666
+ #: includes/admin/class-wc-admin-setup-wizard.php:2236
8667
  msgid "Jetpack"
8668
  msgstr ""
8669
 
8810
  msgstr ""
8811
 
8812
  #: includes/admin/class-wc-admin-setup-wizard.php:1051
8813
+ #: includes/admin/class-wc-admin-setup-wizard.php:1790
8814
+ #: includes/admin/class-wc-admin-setup-wizard.php:1950
8815
  #: includes/admin/importers/views/html-product-csv-import-form.php:101
8816
  msgid "Continue"
8817
  msgstr ""
8938
  "gateways. No setup fees or monthly subscription costs."
8939
  msgstr ""
8940
 
8941
+ #: includes/admin/class-wc-admin-setup-wizard.php:1578
8942
  msgid "A simple offline gateway that lets you accept a check as method of payment."
8943
  msgstr ""
8944
 
8945
+ #: includes/admin/class-wc-admin-setup-wizard.php:1583
8946
  msgid "Bank transfer (BACS) payments"
8947
  msgstr ""
8948
 
8949
+ #: includes/admin/class-wc-admin-setup-wizard.php:1584
8950
  msgid "A simple offline gateway that lets you accept BACS payment."
8951
  msgstr ""
8952
 
8953
+ #: includes/admin/class-wc-admin-setup-wizard.php:1589
8954
  #: includes/gateways/cod/class-wc-gateway-cod.php:56
8955
  #: includes/gateways/cod/class-wc-gateway-cod.php:118
8956
  msgid "Cash on delivery"
8957
  msgstr ""
8958
 
8959
+ #: includes/admin/class-wc-admin-setup-wizard.php:1590
8960
  msgid "A simple offline gateway that lets you accept cash on delivery."
8961
  msgstr ""
8962
 
8963
+ #: includes/admin/class-wc-admin-setup-wizard.php:1739
8964
  #. translators: %s: Link
8965
  msgid ""
8966
  "WooCommerce can accept both online and offline payments. <a href=\"%s\" "
8967
  "target=\"_blank\">Additional payment methods</a> can be installed later."
8968
  msgstr ""
8969
 
8970
+ #: includes/admin/class-wc-admin-setup-wizard.php:1772
8971
  msgid "Offline Payments"
8972
  msgstr ""
8973
 
8974
+ #: includes/admin/class-wc-admin-setup-wizard.php:1775
8975
  msgid "Collect payments from customers offline."
8976
  msgstr ""
8977
 
8978
+ #: includes/admin/class-wc-admin-setup-wizard.php:1892
8979
  msgid "Recommended for All WooCommerce Stores"
8980
  msgstr ""
8981
 
8982
+ #: includes/admin/class-wc-admin-setup-wizard.php:1894
8983
  msgid "Enhance your store with these recommended features."
8984
  msgstr ""
8985
 
8986
+ #: includes/admin/class-wc-admin-setup-wizard.php:1904
8987
  msgid "Storefront Theme"
8988
  msgstr ""
8989
 
8990
+ #: includes/admin/class-wc-admin-setup-wizard.php:1905
8991
  msgid ""
8992
  "Design your store with deep WooCommerce integration. If toggled on, we’ll "
8993
  "install <a href=\"https://woocommerce.com/storefront/\" target=\"_blank\" "
8995
  "<em>%s</em> will be deactivated."
8996
  msgstr ""
8997
 
8998
+ #: includes/admin/class-wc-admin-setup-wizard.php:1910
8999
  msgid "Storefront icon"
9000
  msgstr ""
9001
 
9002
+ #: includes/admin/class-wc-admin-setup-wizard.php:1917
9003
  msgid "Automated Taxes"
9004
  msgstr ""
9005
 
9006
+ #: includes/admin/class-wc-admin-setup-wizard.php:1918
9007
  msgid ""
9008
  "Save time and errors with automated tax calculation and collection at "
9009
  "checkout. Powered by WooCommerce Services and Jetpack."
9010
  msgstr ""
9011
 
9012
+ #: includes/admin/class-wc-admin-setup-wizard.php:1920
9013
  msgid "automated taxes icon"
9014
  msgstr ""
9015
 
9016
+ #: includes/admin/class-wc-admin-setup-wizard.php:1928
9017
  msgid "Mailchimp"
9018
  msgstr ""
9019
 
9020
+ #: includes/admin/class-wc-admin-setup-wizard.php:1929
9021
  msgid ""
9022
  "Join the 16 million customers who use Mailchimp. Sync list and store data "
9023
  "to send automated emails, and targeted campaigns."
9024
  msgstr ""
9025
 
9026
+ #: includes/admin/class-wc-admin-setup-wizard.php:1931
9027
  msgid "Mailchimp icon"
9028
  msgstr ""
9029
 
9030
+ #: includes/admin/class-wc-admin-setup-wizard.php:1932
9031
  msgid "Mailchimp for WooCommerce"
9032
  msgstr ""
9033
 
9034
+ #: includes/admin/class-wc-admin-setup-wizard.php:1939
9035
  msgid "Facebook"
9036
  msgstr ""
9037
 
9038
+ #: includes/admin/class-wc-admin-setup-wizard.php:1940
9039
  msgid ""
9040
  "Enjoy all Facebook products combined in one extension: pixel tracking, "
9041
  "catalog sync, messenger chat, shop functionality and Instagram shopping "
9042
  "(coming soon)!"
9043
  msgstr ""
9044
 
9045
+ #: includes/admin/class-wc-admin-setup-wizard.php:1942
9046
  msgid "Facebook icon"
9047
  msgstr ""
9048
 
9049
+ #: includes/admin/class-wc-admin-setup-wizard.php:1943
9050
+ #: includes/admin/class-wc-admin-setup-wizard.php:1997
9051
  msgid "Facebook for WooCommerce"
9052
  msgstr ""
9053
 
9054
+ #: includes/admin/class-wc-admin-setup-wizard.php:1986
9055
  msgid "MailChimp for WooCommerce"
9056
  msgstr ""
9057
 
9058
+ #: includes/admin/class-wc-admin-setup-wizard.php:2044
9059
  msgid "payment setup, automated taxes and discounted shipping labels"
9060
  msgstr ""
9061
 
9062
+ #: includes/admin/class-wc-admin-setup-wizard.php:2046
9063
  msgid "payment setup and automated taxes"
9064
  msgstr ""
9065
 
9066
+ #: includes/admin/class-wc-admin-setup-wizard.php:2048
9067
  msgid "payment setup and discounted shipping labels"
9068
  msgstr ""
9069
 
9070
+ #: includes/admin/class-wc-admin-setup-wizard.php:2050
9071
  msgid "payment setup"
9072
  msgstr ""
9073
 
9074
+ #: includes/admin/class-wc-admin-setup-wizard.php:2052
9075
  msgid "automated taxes and discounted shipping labels"
9076
  msgstr ""
9077
 
9078
+ #: includes/admin/class-wc-admin-setup-wizard.php:2054
9079
  msgid "automated taxes"
9080
  msgstr ""
9081
 
9082
+ #: includes/admin/class-wc-admin-setup-wizard.php:2056
9083
  msgid "discounted shipping labels"
9084
  msgstr ""
9085
 
9086
+ #: includes/admin/class-wc-admin-setup-wizard.php:2073
9087
  msgid "Sorry, we couldn't connect your store to Jetpack"
9088
  msgstr ""
9089
 
9090
+ #: includes/admin/class-wc-admin-setup-wizard.php:2085
9091
  #. translators: %s: list of features, potentially comma separated
9092
  msgid ""
9093
  "Your store is almost ready! To activate services like %s, just connect with "
9094
  "Jetpack."
9095
  msgstr ""
9096
 
9097
+ #: includes/admin/class-wc-admin-setup-wizard.php:2087
9098
  msgid ""
9099
  "Thanks for using Jetpack! Your store is almost ready: to activate services "
9100
  "like %s, just connect your store."
9101
  msgstr ""
9102
 
9103
+ #: includes/admin/class-wc-admin-setup-wizard.php:2094
9104
  msgid "Connect your store to Jetpack"
9105
  msgstr ""
9106
 
9107
+ #: includes/admin/class-wc-admin-setup-wizard.php:2095
9108
  msgid "Connect your store to Jetpack to enable extra features"
9109
  msgstr ""
9110
 
9111
+ #: includes/admin/class-wc-admin-setup-wizard.php:2096
9112
  msgid "Continue with Jetpack"
9113
  msgstr ""
9114
 
9115
+ #: includes/admin/class-wc-admin-setup-wizard.php:2098
9116
  msgid "Connect your store to activate WooCommerce Services"
9117
  msgstr ""
9118
 
9119
+ #: includes/admin/class-wc-admin-setup-wizard.php:2099
9120
  msgid "Continue with WooCommerce Services"
9121
  msgstr ""
9122
 
9123
+ #: includes/admin/class-wc-admin-setup-wizard.php:2135
9124
  msgid "Finish setting up your store"
9125
  msgstr ""
9126
 
9127
+ #: includes/admin/class-wc-admin-setup-wizard.php:2142
9128
  msgid ""
9129
  "By connecting your site you agree to our fascinating <a href=\"%1$s\" "
9130
  "target=\"_blank\">Terms of Service</a> and to <a href=\"%2$s\" "
9131
  "target=\"_blank\">share details</a> with WordPress.com"
9132
  msgstr ""
9133
 
9134
+ #: includes/admin/class-wc-admin-setup-wizard.php:2159
9135
  msgid "Bonus reasons you'll love Jetpack"
9136
  msgstr ""
9137
 
9138
+ #: includes/admin/class-wc-admin-setup-wizard.php:2160
9139
  msgid "Reasons you'll love Jetpack"
9140
  msgstr ""
9141
 
9142
+ #: includes/admin/class-wc-admin-setup-wizard.php:2167
9143
  msgid "Better security"
9144
  msgstr ""
9145
 
9146
+ #: includes/admin/class-wc-admin-setup-wizard.php:2170
9147
  msgid "Protect your store from unauthorized access."
9148
  msgstr ""
9149
 
9150
+ #: includes/admin/class-wc-admin-setup-wizard.php:2175
9151
  msgid "Store stats"
9152
  msgstr ""
9153
 
9154
+ #: includes/admin/class-wc-admin-setup-wizard.php:2178
9155
  msgid ""
9156
  "Get insights on how your store is doing, including total sales, top "
9157
  "products, and more."
9158
  msgstr ""
9159
 
9160
+ #: includes/admin/class-wc-admin-setup-wizard.php:2183
9161
  msgid "Store monitoring"
9162
  msgstr ""
9163
 
9164
+ #: includes/admin/class-wc-admin-setup-wizard.php:2186
9165
  msgid "Get an alert if your store is down for even a few minutes."
9166
  msgstr ""
9167
 
9168
+ #: includes/admin/class-wc-admin-setup-wizard.php:2191
9169
  msgid "Product promotion"
9170
  msgstr ""
9171
 
9172
+ #: includes/admin/class-wc-admin-setup-wizard.php:2194
9173
  msgid "Share new items on social media the moment they're live in your store."
9174
  msgstr ""
9175
 
9176
+ #: includes/admin/class-wc-admin-setup-wizard.php:2205
9177
  msgid ""
9178
  "Sorry! We tried, but we couldn't connect Jetpack just now 😭. Please go to "
9179
  "the Plugins tab to connect Jetpack, so that you can finish setting up your "
9180
  "store."
9181
  msgstr ""
9182
 
9183
+ #: includes/admin/class-wc-admin-setup-wizard.php:2206
9184
  msgid ""
9185
  "Sorry! We tried, but we couldn't install Jetpack for you 😭. Please go to "
9186
  "the Plugins tab to install it, and finish setting up your store."
9187
  msgstr ""
9188
 
9189
+ #: includes/admin/class-wc-admin-setup-wizard.php:2207
9190
  msgid ""
9191
  "Sorry! We couldn't contact Jetpack just now 😭. Please make sure that your "
9192
  "site is visible over the internet, and that it accepts incoming and "
9194
  "and if you run into any more issues, please contact support."
9195
  msgstr ""
9196
 
9197
+ #: includes/admin/class-wc-admin-setup-wizard.php:2208
9198
  msgid ""
9199
  "Your site might be on a private network. Jetpack can only connect to public "
9200
  "sites. Please make sure your site is visible over the internet, and then "
9201
  "try connecting again 🙏."
9202
  msgstr ""
9203
 
9204
+ #: includes/admin/class-wc-admin-setup-wizard.php:2280
9205
  #. translators: %1$s: link to videos, %2$s: link to docs
9206
  msgid ""
9207
  "Watch our <a href=\"%1$s\" target=\"_blank\">guided tour videos</a> to "
9209
  "<a href=\"%2$s\" target=\"_blank\">getting started</a>."
9210
  msgstr ""
9211
 
9212
+ #: includes/admin/class-wc-admin-setup-wizard.php:2285
9213
  msgid "You're ready to start selling!"
9214
  msgstr ""
9215
 
9216
+ #: includes/admin/class-wc-admin-setup-wizard.php:2288
9217
  msgid ""
9218
  "We're here for you — get tips, product updates, and inspiration straight to "
9219
  "your mailbox."
9220
  msgstr ""
9221
 
9222
+ #: includes/admin/class-wc-admin-setup-wizard.php:2302
9223
+ #: includes/admin/class-wc-admin-setup-wizard.php:2306
9224
  msgid "Yes please!"
9225
  msgstr ""
9226
 
9227
+ #: includes/admin/class-wc-admin-setup-wizard.php:2315
9228
  msgid "Next step"
9229
  msgstr ""
9230
 
9231
+ #: includes/admin/class-wc-admin-setup-wizard.php:2316
9232
  msgid "Create some products"
9233
  msgstr ""
9234
 
9235
+ #: includes/admin/class-wc-admin-setup-wizard.php:2317
9236
  msgid "You're ready to add products to your store."
9237
  msgstr ""
9238
 
9239
+ #: includes/admin/class-wc-admin-setup-wizard.php:2322
9240
  msgid "Create a product"
9241
  msgstr ""
9242
 
9243
+ #: includes/admin/class-wc-admin-setup-wizard.php:2329
9244
  msgid "Have an existing store?"
9245
  msgstr ""
9246
 
9247
+ #: includes/admin/class-wc-admin-setup-wizard.php:2330
9248
+ #: includes/admin/class-wc-admin-setup-wizard.php:2336
9249
  msgid "Import products"
9250
  msgstr ""
9251
 
9252
+ #: includes/admin/class-wc-admin-setup-wizard.php:2331
9253
  msgid "Transfer existing products to your new store — just import a CSV file."
9254
  msgstr ""
9255
 
9256
+ #: includes/admin/class-wc-admin-setup-wizard.php:2343
9257
  msgid "You can also:"
9258
  msgstr ""
9259
 
9260
+ #: includes/admin/class-wc-admin-setup-wizard.php:2348
9261
  msgid "Visit Dashboard"
9262
  msgstr ""
9263
 
9264
+ #: includes/admin/class-wc-admin-setup-wizard.php:2351
9265
  msgid "Review Settings"
9266
  msgstr ""
9267
 
9268
+ #: includes/admin/class-wc-admin-setup-wizard.php:2354
9269
  msgid "View &amp; Customize"
9270
  msgstr ""
9271
 
9360
  msgstr ""
9361
 
9362
  #: includes/admin/class-wc-admin-taxonomies.php:375
9363
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:116
9364
  msgid "Image"
9365
  msgstr ""
9366
 
9464
  msgid "Create a new webhook"
9465
  msgstr ""
9466
 
9467
+ #: includes/admin/class-wc-admin.php:218
9468
  msgid "HTML email template"
9469
  msgstr ""
9470
 
9471
+ #: includes/admin/class-wc-admin.php:262
9472
  #. translators: 1: WooCommerce 2:: five stars
9473
  msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
9474
  msgstr ""
9475
 
9476
+ #: includes/admin/class-wc-admin.php:264
9477
  msgid "five star"
9478
  msgstr ""
9479
 
9480
+ #: includes/admin/class-wc-admin.php:264
9481
  msgid "Thanks :)"
9482
  msgstr ""
9483
 
9484
+ #: includes/admin/class-wc-admin.php:273
9485
  msgid "Thank you for selling with WooCommerce."
9486
  msgstr ""
9487
 
9606
  #: includes/class-wc-emails.php:410
9607
  #: includes/legacy/abstract-wc-legacy-order.php:507
9608
  #: includes/wc-account-functions.php:219
9609
+ #: includes/wc-template-functions.php:3262
9610
  msgid "Download"
9611
  msgstr ""
9612
 
9867
 
9868
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:501
9869
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:660
9870
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:120
9871
  #: includes/admin/meta-boxes/views/html-product-data-inventory.php:21
9872
  #: includes/admin/meta-boxes/views/html-variation-admin.php:79
9873
  #: includes/admin/views/html-quick-edit-product.php:21
10034
 
10035
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:529
10036
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:696
10037
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:128
10038
  #: includes/admin/reports/class-wc-report-sales-by-category.php:201
10039
  #: includes/class-wc-post-types.php:90
10040
  #: includes/export/class-wc-product-csv-exporter.php:135
10043
 
10044
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:530
10045
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:697
10046
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:129
10047
  #: includes/export/class-wc-product-csv-exporter.php:136
10048
  msgid "Tags"
10049
  msgstr ""
10186
 
10187
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:668
10188
  #: includes/admin/importers/mappings/generic.php:23
10189
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:127
10190
  #: includes/admin/views/html-bulk-edit-product.php:21
10191
  #: includes/admin/views/html-quick-edit-product.php:32
10192
  #: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:31
10195
  msgstr ""
10196
 
10197
  #: includes/admin/importers/class-wc-product-csv-importer-controller.php:686
10198
+ #: includes/wc-template-functions.php:3315
10199
  msgid "Dimensions"
10200
  msgstr ""
10201
 
10568
  msgstr ""
10569
 
10570
  #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:122
10571
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:131
10572
  #: includes/admin/reports/class-wc-report-coupon-usage.php:367
10573
  #: includes/admin/reports/class-wc-report-customers.php:238
10574
  #: includes/admin/reports/class-wc-report-sales-by-category.php:274
10785
  msgid "Filter by registered customer"
10786
  msgstr ""
10787
 
10788
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:51
10789
  msgid "Ready to start selling something awesome?"
10790
  msgstr ""
10791
 
10792
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:55
10793
  msgid "Create Product"
10794
  msgstr ""
10795
 
10796
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:56
10797
  msgid "Start Import"
10798
  msgstr ""
10799
 
10800
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:258
10801
  msgid "Toggle featured"
10802
  msgstr ""
10803
 
10804
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:260
10805
  #: includes/admin/settings/class-wc-settings-emails.php:302
10806
  #: includes/admin/settings/class-wc-settings-payment-gateways.php:186
10807
  #: includes/admin/settings/class-wc-settings-shipping.php:272
10811
  msgid "Yes"
10812
  msgstr ""
10813
 
10814
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:262
10815
  #: includes/admin/settings/class-wc-settings-payment-gateways.php:189
10816
  #: includes/admin/settings/class-wc-settings-shipping.php:273
10817
  #: includes/admin/views/html-bulk-edit-product.php:207
10820
  msgid "No"
10821
  msgstr ""
10822
 
10823
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:272
10824
  #: includes/admin/reports/class-wc-report-stock.php:114
10825
+ #: includes/wc-product-functions.php:816
10826
  msgid "On backorder"
10827
  msgstr ""
10828
 
10829
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:274
10830
  #: includes/admin/reports/class-wc-report-stock.php:116
10831
  #: includes/wc-formatting-functions.php:1178
10832
+ #: includes/wc-product-functions.php:814
10833
  msgid "In stock"
10834
  msgstr ""
10835
 
10836
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:330
10837
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:338
10838
  msgid "Filter by category"
10839
  msgstr ""
10840
 
10841
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:354
10842
  msgid "Filter by product type"
10843
  msgstr ""
10844
 
10845
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:365
10846
  #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:69
10847
  #: includes/admin/meta-boxes/views/html-variation-admin.php:93
10848
  msgid "Downloadable"
10849
  msgstr ""
10850
 
10851
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:369
10852
  #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:62
10853
  #: includes/admin/meta-boxes/views/html-variation-admin.php:97
10854
  msgid "Virtual"
10855
  msgstr ""
10856
 
10857
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:385
10858
  msgid "Filter by stock status"
10859
  msgstr ""
10860
 
10861
+ #: includes/admin/list-tables/class-wc-admin-list-table-products.php:424
10862
  msgid "Sorting"
10863
  msgstr ""
10864
 
11858
  #: includes/admin/meta-boxes/views/html-product-data-variations.php:83
11859
  #: includes/admin/views/html-bulk-edit-product.php:118
11860
  #: includes/admin/views/html-quick-edit-product.php:98
11861
+ #: includes/wc-template-functions.php:3308
11862
  msgid "Weight"
11863
  msgstr ""
11864
 
12875
  msgstr ""
12876
 
12877
  #: includes/admin/settings/class-wc-settings-accounts.php:154
12878
+ #: includes/wc-template-functions.php:813
12879
  #. translators: %s privacy policy page name and link
12880
  msgid ""
12881
  "Your personal data will be used to support your experience throughout this "
12896
 
12897
  #: includes/admin/settings/class-wc-settings-accounts.php:164
12898
  #: includes/customizer/class-wc-shop-customizer.php:736
12899
+ #: includes/wc-template-functions.php:809
12900
  #. translators: %s privacy policy page name and link
12901
  msgid ""
12902
  "Your personal data will be used to process your order, support your "
13915
  #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:14
13916
  #: includes/admin/settings/views/html-admin-page-shipping-zones-instance.php:7
13917
  #: includes/admin/settings/views/html-admin-page-shipping-zones.php:8
13918
+ #: includes/admin/views/html-notice-legacy-shipping.php:18
13919
  msgid "Shipping zones"
13920
  msgstr ""
13921
 
14306
  #: includes/admin/settings/views/html-settings-tax.php:18
14307
  #: includes/admin/views/html-bulk-edit-product.php:95
14308
  #: includes/admin/views/html-quick-edit-product.php:72
14309
+ #: includes/wc-product-functions.php:794
14310
  msgid "Standard"
14311
  msgstr ""
14312
 
15594
  #: includes/admin/views/html-bulk-edit-product.php:190
15595
  #: includes/admin/views/html-quick-edit-product.php:147
15596
  #: includes/customizer/class-wc-shop-customizer.php:700
15597
+ #: includes/wc-product-functions.php:780
15598
  msgid "Hidden"
15599
  msgstr ""
15600
 
15636
  msgid "Skip setup"
15637
  msgstr ""
15638
 
15639
+ #: includes/admin/views/html-notice-legacy-shipping.php:18
15640
  msgid "New:"
15641
  msgstr ""
15642
 
15643
+ #: includes/admin/views/html-notice-legacy-shipping.php:18
15644
  msgid ""
15645
  "a group of regions that can be assigned different shipping methods and "
15646
  "rates."
15647
  msgstr ""
15648
 
15649
+ #: includes/admin/views/html-notice-legacy-shipping.php:21
15650
  msgid ""
15651
  "Legacy shipping methods (flat rate, international flat rate, local pickup "
15652
  "and delivery, and free shipping) are deprecated but will continue to work "
15655
  "within shipping zones as soon as possible."
15656
  msgstr ""
15657
 
15658
+ #: includes/admin/views/html-notice-legacy-shipping.php:27
15659
+ #: includes/admin/views/html-notice-no-shipping-methods.php:31
15660
  msgid "Setup shipping zones"
15661
  msgstr ""
15662
 
15663
+ #: includes/admin/views/html-notice-legacy-shipping.php:31
15664
+ #: includes/admin/views/html-notice-no-shipping-methods.php:34
15665
  msgid "Learn more about shipping zones"
15666
  msgstr ""
15667
 
15668
+ #: includes/admin/views/html-notice-no-shipping-methods.php:19
15669
  msgid "Add shipping methods &amp; zones"
15670
  msgstr ""
15671
 
15672
+ #: includes/admin/views/html-notice-no-shipping-methods.php:23
15673
  msgid ""
15674
  "Shipping is currently enabled, but you have not added any shipping methods "
15675
  "to your shipping zones."
15676
  msgstr ""
15677
 
15678
+ #: includes/admin/views/html-notice-no-shipping-methods.php:26
15679
  msgid ""
15680
  "Customers will not be able to purchase physical goods from your store until "
15681
  "a shipping method is available."
17565
  msgstr ""
17566
 
17567
  #: includes/api/class-wc-rest-report-reviews-totals-controller.php:57
17568
+ #: includes/class-wc-embed.php:130 includes/wc-template-functions.php:3421
17569
+ #: includes/wc-template-functions.php:3444
17570
  #: includes/widgets/class-wc-widget-layered-nav-filters.php:102
17571
  #. translators: %s: average rating
17572
  #. translators: %s: rating
17781
  #: includes/api/v1/class-wc-rest-products-controller.php:314
17782
  #: includes/api/v2/class-wc-rest-products-v2-controller.php:426
17783
  #: includes/api/v2/class-wc-rest-products-v2-controller.php:427
17784
+ #: includes/wc-product-functions.php:304 includes/wc-product-functions.php:310
17785
  msgid "Placeholder"
17786
  msgstr ""
17787
 
20837
 
20838
  #: includes/class-wc-cart.php:1042 includes/class-wc-cart.php:1070
20839
  #: includes/class-wc-frontend-scripts.php:550
20840
+ #: includes/wc-cart-functions.php:123 includes/wc-template-functions.php:2072
20841
  #. translators: %s: product name
20842
  msgid "View cart"
20843
  msgstr ""
21030
  msgid "(ex. tax)"
21031
  msgstr ""
21032
 
21033
+ #: includes/class-wc-countries.php:623
21034
  msgid "Apartment, suite, unit etc. (optional)"
21035
  msgstr ""
21036
 
21037
+ #: includes/class-wc-countries.php:625
21038
  msgid "Apartment, suite, unit etc."
21039
  msgstr ""
21040
 
21041
+ #: includes/class-wc-countries.php:644
21042
  #: includes/customizer/class-wc-shop-customizer.php:677
21043
  msgid "Company name"
21044
  msgstr ""
21045
 
21046
+ #: includes/class-wc-countries.php:659
21047
  msgid "Street address"
21048
  msgstr ""
21049
 
21050
+ #: includes/class-wc-countries.php:661
21051
  #. translators: use local order of street name and house number.
21052
  msgid "House number and street name"
21053
  msgstr ""
21054
 
21055
+ #: includes/class-wc-countries.php:675
21056
  msgid "Town / City"
21057
  msgstr ""
21058
 
21059
+ #: includes/class-wc-countries.php:763 includes/class-wc-countries.php:807
21060
+ #: includes/class-wc-countries.php:837 includes/class-wc-countries.php:862
21061
+ #: includes/class-wc-countries.php:948 includes/class-wc-countries.php:987
21062
+ #: includes/class-wc-countries.php:1045 includes/class-wc-countries.php:1149
21063
+ #: includes/class-wc-countries.php:1189 includes/class-wc-countries.php:1245
21064
  msgid "Province"
21065
  msgstr ""
21066
 
21067
+ #: includes/class-wc-countries.php:776
21068
  msgid "Suburb"
21069
  msgstr ""
21070
 
21071
+ #: includes/class-wc-countries.php:779 includes/class-wc-countries.php:1050
21072
+ #: includes/class-wc-countries.php:1060 includes/class-wc-countries.php:1202
21073
  msgid "Postcode"
21074
  msgstr ""
21075
 
21076
+ #: includes/class-wc-countries.php:798 includes/class-wc-countries.php:1215
21077
  msgid "District"
21078
  msgstr ""
21079
 
21080
+ #: includes/class-wc-countries.php:845
21081
  msgid "Canton"
21082
  msgstr ""
21083
 
21084
+ #: includes/class-wc-countries.php:857 includes/class-wc-countries.php:938
21085
+ #: includes/class-wc-countries.php:1064
21086
  msgid "Region"
21087
  msgstr ""
21088
 
21089
+ #: includes/class-wc-countries.php:935
21090
  msgid "Town / District"
21091
  msgstr ""
21092
 
21093
+ #: includes/class-wc-countries.php:943 includes/class-wc-countries.php:957
21094
+ #: includes/class-wc-countries.php:1103 includes/class-wc-countries.php:1205
21095
  msgid "County"
21096
  msgstr ""
21097
 
21098
+ #: includes/class-wc-countries.php:954
21099
  msgid "Eircode"
21100
  msgstr ""
21101
 
21102
+ #: includes/class-wc-countries.php:995
21103
  msgid "Prefecture"
21104
  msgstr ""
21105
 
21106
+ #: includes/class-wc-countries.php:1020 includes/class-wc-countries.php:1157
21107
  msgid "Municipality"
21108
  msgstr ""
21109
 
21110
+ #: includes/class-wc-countries.php:1077
21111
  msgid "State / Zone"
21112
  msgstr ""
21113
 
21114
+ #: includes/class-wc-countries.php:1173
21115
  msgid "Municipality / District"
21116
  msgstr ""
21117
 
21118
+ #: includes/class-wc-countries.php:1194
21119
  msgid "ZIP"
21120
  msgstr ""
21121
 
21496
  msgstr ""
21497
 
21498
  #: includes/class-wc-frontend-scripts.php:524
21499
+ #: includes/wc-template-functions.php:2626
21500
  msgid "required"
21501
  msgstr ""
21502
 
21503
  #: includes/class-wc-frontend-scripts.php:525
21504
+ #: includes/wc-template-functions.php:2628
21505
  msgid "optional"
21506
  msgstr ""
21507
 
22615
  msgid "Output just the id when the operation is successful."
22616
  msgstr ""
22617
 
22618
+ #: includes/cli/class-wc-cli-update-command.php:55
22619
  #. translators: %s Database version number
22620
  msgid "No updates required. Database version is %s"
22621
  msgstr ""
22622
 
22623
+ #: includes/cli/class-wc-cli-update-command.php:60
22624
  #. translators: 1: Number of database updates 2: List of update callbacks
22625
  msgid "Found %1$d updates (%2$s)"
22626
  msgstr ""
22627
 
22628
+ #: includes/cli/class-wc-cli-update-command.php:62
22629
  msgid "Updating database"
22630
  msgstr ""
22631
 
22632
+ #: includes/cli/class-wc-cli-update-command.php:79
22633
  #. translators: 1: Number of database updates performed 2: Database version
22634
  #. number
22635
  msgid "%1$d update functions completed. Database version is %2$s"
22681
  msgstr ""
22682
 
22683
  #: includes/customizer/class-wc-shop-customizer.php:311
22684
+ #: includes/wc-template-functions.php:1016
22685
  msgid ""
22686
  "This is a demo store for testing purposes &mdash; no orders shall be "
22687
  "fulfilled."
22839
  msgstr ""
22840
 
22841
  #: includes/customizer/class-wc-shop-customizer.php:668
22842
+ #: includes/wc-template-functions.php:2082
22843
  msgid "Checkout"
22844
  msgstr ""
22845
 
22857
  msgstr ""
22858
 
22859
  #: includes/customizer/class-wc-shop-customizer.php:724
22860
+ #: includes/wc-template-functions.php:793
22861
  #. translators: %s terms and conditions page name and link
22862
  msgid "I have read and agree to the website %s"
22863
  msgstr ""
23974
  msgstr ""
23975
 
23976
  #: includes/legacy/abstract-wc-legacy-order.php:507
23977
+ #: includes/wc-template-functions.php:3262
23978
  #. translators: 1: current item count
23979
  #. translators: %d: downloads count
23980
  msgid "Download %d"
25641
  msgid "%1$s should not be called before the %2$s action."
25642
  msgstr ""
25643
 
25644
+ #: includes/wc-product-functions.php:540
25645
  msgid "Simple product"
25646
  msgstr ""
25647
 
25648
+ #: includes/wc-product-functions.php:541
25649
  msgid "Grouped product"
25650
  msgstr ""
25651
 
25652
+ #: includes/wc-product-functions.php:542
25653
  msgid "External/Affiliate product"
25654
  msgstr ""
25655
 
25656
+ #: includes/wc-product-functions.php:543
25657
  msgid "Variable product"
25658
  msgstr ""
25659
 
25660
+ #: includes/wc-product-functions.php:777
25661
  msgid "Shop and search results"
25662
  msgstr ""
25663
 
25664
+ #: includes/wc-product-functions.php:778
25665
  msgid "Shop only"
25666
  msgstr ""
25667
 
25668
+ #: includes/wc-product-functions.php:779
25669
  msgid "Search results only"
25670
  msgstr ""
25671
 
25672
+ #: includes/wc-product-functions.php:829
25673
  msgid "Do not allow"
25674
  msgstr ""
25675
 
25676
+ #: includes/wc-product-functions.php:830
25677
  msgid "Allow, but notify customer"
25678
  msgstr ""
25679
 
25680
+ #: includes/wc-product-functions.php:831
25681
  msgid "Allow"
25682
  msgstr ""
25683
 
25710
  msgid "The date you provided is invalid."
25711
  msgstr ""
25712
 
25713
+ #: includes/wc-stock-functions.php:179
25714
  #. translators: %s item name.
25715
  msgid "Unable to reduce stock for item %s."
25716
  msgstr ""
25717
 
25718
+ #: includes/wc-stock-functions.php:234
25719
  msgid "Stock levels reduced:"
25720
  msgstr ""
25721
 
25722
+ #: includes/wc-stock-functions.php:277
25723
  #. translators: %s item name.
25724
  msgid "Unable to restore stock for item %s."
25725
  msgstr ""
25726
 
25727
+ #: includes/wc-stock-functions.php:288
25728
  msgid "Stock levels increased:"
25729
  msgstr ""
25730
 
25732
  msgid "Checkout is not available whilst your cart is empty."
25733
  msgstr ""
25734
 
25735
+ #: includes/wc-template-functions.php:901
25736
  msgid "privacy policy"
25737
  msgstr ""
25738
 
25739
+ #: includes/wc-template-functions.php:902
25740
  msgid "terms and conditions"
25741
  msgstr ""
25742
 
25743
+ #: includes/wc-template-functions.php:1041
25744
  #. translators: %s: search query
25745
  msgid "Search results: &ldquo;%s&rdquo;"
25746
  msgstr ""
25747
 
25748
+ #: includes/wc-template-functions.php:1045
25749
  #. translators: %s: page number
25750
  msgid "&nbsp;&ndash; Page %s"
25751
  msgstr ""
25752
 
25753
+ #: includes/wc-template-functions.php:1357
25754
  msgid "Default sorting"
25755
  msgstr ""
25756
 
25757
+ #: includes/wc-template-functions.php:1358
25758
  msgid "Sort by popularity"
25759
  msgstr ""
25760
 
25761
+ #: includes/wc-template-functions.php:1359
25762
  msgid "Sort by average rating"
25763
  msgstr ""
25764
 
25765
+ #: includes/wc-template-functions.php:1360
25766
  msgid "Sort by latest"
25767
  msgstr ""
25768
 
25769
+ #: includes/wc-template-functions.php:1361
25770
  msgid "Sort by price: low to high"
25771
  msgstr ""
25772
 
25773
+ #: includes/wc-template-functions.php:1362
25774
  msgid "Sort by price: high to low"
25775
  msgstr ""
25776
 
25777
+ #: includes/wc-template-functions.php:1370
25778
  msgid "Relevance"
25779
  msgstr ""
25780
 
25781
+ #: includes/wc-template-functions.php:1746
25782
  #: templates/checkout/form-shipping.php:57
25783
  #: templates/single-product/tabs/additional-information.php:24
25784
  msgid "Additional information"
25785
  msgstr ""
25786
 
25787
+ #: includes/wc-template-functions.php:1756
25788
  #. translators: %s: reviews count
25789
  msgid "Reviews (%d)"
25790
  msgstr ""
25791
 
25792
+ #: includes/wc-template-functions.php:2222
25793
  msgid "Place order"
25794
  msgstr ""
25795
 
25796
+ #: includes/wc-template-functions.php:2696
25797
  msgid "Update country"
25798
  msgstr ""
25799
 
25800
+ #: includes/wc-template-functions.php:2763
25801
+ #: includes/wc-template-functions.php:2930
25802
+ #: includes/wc-template-functions.php:2947
25803
  msgid "Choose an option"
25804
  msgstr ""
25805
 
25806
+ #: includes/wc-template-functions.php:3441
25807
  #. translators: 1: rating 2: rating count
25808
  msgid "Rated %1$s out of 5 based on %2$s customer rating"
25809
  msgid_plural "Rated %1$s out of 5 based on %2$s customer ratings"
25810
  msgstr[0] ""
25811
  msgstr[1] ""
25812
 
25813
+ #: includes/wc-template-functions.php:3487
25814
  msgid "Your cart is currently empty."
25815
  msgstr ""
25816
 
26973
  msgid "GST"
26974
  msgstr ""
26975
 
26976
+ #: i18n/states/US.php:24 i18n/states.php:1291
26977
  msgctxt "US state of Georgia"
26978
  msgid "Georgia"
26979
  msgstr ""
27105
  msgid "product"
27106
  msgstr ""
27107
 
27108
+ #: includes/wc-product-functions.php:228
27109
  msgctxt "slug"
27110
  msgid "uncategorized"
27111
  msgstr ""
27121
  msgid "product"
27122
  msgstr ""
27123
 
27124
+ #: includes/admin/class-wc-admin-setup-wizard.php:1577
27125
  #: includes/gateways/cheque/class-wc-gateway-cheque.php:31
27126
  #: includes/gateways/cheque/class-wc-gateway-cheque.php:67
27127
  msgctxt "Check payment method"
27426
  msgid "%1$s &ndash; %2$s"
27427
  msgstr ""
27428
 
27429
+ #: includes/wc-template-functions.php:2163
27430
  msgctxt "breadcrumb"
27431
  msgid "Home"
27432
  msgstr ""
27433
 
27434
+ #: includes/wc-template-functions.php:3459
27435
  msgctxt "min_price"
27436
  msgid "From:"
27437
  msgstr ""
i18n/locale-info.php CHANGED
@@ -543,6 +543,16 @@ return array(
543
  ),
544
  ),
545
  ),
 
 
 
 
 
 
 
 
 
 
546
  'TH' => array(
547
  'currency_code' => 'THB',
548
  'currency_pos' => 'left',
543
  ),
544
  ),
545
  ),
546
+ 'RS' => array(
547
+ 'currency_code' => 'RSD',
548
+ 'currency_pos' => 'right_space',
549
+ 'thousand_sep' => '.',
550
+ 'decimal_sep' => ',',
551
+ 'num_decimals' => 2,
552
+ 'weight_unit' => 'kg',
553
+ 'dimension_unit' => 'cm',
554
+ 'tax_rates' => array(),
555
+ ),
556
  'TH' => array(
557
  'currency_code' => 'THB',
558
  'currency_pos' => 'left',
i18n/states.php CHANGED
@@ -1077,6 +1077,7 @@ return array(
1077
  'VS' => __( 'Vaslui', 'woocommerce' ),
1078
  'VN' => __( 'Vrancea', 'woocommerce' ),
1079
  ),
 
1080
  'SG' => array(),
1081
  'SK' => array(),
1082
  'SI' => array(),
1077
  'VS' => __( 'Vaslui', 'woocommerce' ),
1078
  'VN' => __( 'Vrancea', 'woocommerce' ),
1079
  ),
1080
+ 'RS' => array(),
1081
  'SG' => array(),
1082
  'SK' => array(),
1083
  'SI' => array(),
includes/abstracts/abstract-wc-order.php CHANGED
@@ -1848,7 +1848,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
1848
  */
1849
  protected function add_order_item_totals_tax_rows( &$total_rows, $tax_display ) {
1850
  // Tax for tax exclusive prices.
1851
- if ( 'excl' === $tax_display ) {
1852
  if ( 'itemized' === get_option( 'woocommerce_tax_total_display' ) ) {
1853
  foreach ( $this->get_tax_totals() as $code => $tax ) {
1854
  $total_rows[ sanitize_title( $code ) ] = array(
1848
  */
1849
  protected function add_order_item_totals_tax_rows( &$total_rows, $tax_display ) {
1850
  // Tax for tax exclusive prices.
1851
+ if ( 'excl' === $tax_display && wc_tax_enabled() ) {
1852
  if ( 'itemized' === get_option( 'woocommerce_tax_total_display' ) ) {
1853
  foreach ( $this->get_tax_totals() as $code => $tax ) {
1854
  $total_rows[ sanitize_title( $code ) ] = array(
includes/admin/class-wc-admin-dashboard.php CHANGED
@@ -215,7 +215,12 @@ if ( ! class_exists( 'WC_Admin_Dashboard', false ) ) :
215
  if ( false === $lowinstock_count ) {
216
  $lowinstock_count = (int) $wpdb->get_var(
217
  $wpdb->prepare(
218
- "SELECT COUNT( product_id ) FROM {$wpdb->wc_product_meta_lookup} WHERE stock_quantity <= %d AND stock_quantity > %d",
 
 
 
 
 
219
  $stock,
220
  $nostock
221
  )
@@ -229,7 +234,11 @@ if ( ! class_exists( 'WC_Admin_Dashboard', false ) ) :
229
  if ( false === $outofstock_count ) {
230
  $outofstock_count = (int) $wpdb->get_var(
231
  $wpdb->prepare(
232
- "SELECT COUNT( product_id ) FROM {$wpdb->wc_product_meta_lookup} WHERE stock_quantity <= %d",
 
 
 
 
233
  $nostock
234
  )
235
  );
215
  if ( false === $lowinstock_count ) {
216
  $lowinstock_count = (int) $wpdb->get_var(
217
  $wpdb->prepare(
218
+ "SELECT COUNT( product_id )
219
+ FROM {$wpdb->wc_product_meta_lookup} AS lookup
220
+ INNER JOIN {$wpdb->posts} as posts ON lookup.product_id = posts.ID
221
+ WHERE stock_quantity <= %d
222
+ AND stock_quantity > %d
223
+ AND posts.post_status = 'publish'",
224
  $stock,
225
  $nostock
226
  )
234
  if ( false === $outofstock_count ) {
235
  $outofstock_count = (int) $wpdb->get_var(
236
  $wpdb->prepare(
237
+ "SELECT COUNT( product_id )
238
+ FROM {$wpdb->wc_product_meta_lookup} AS lookup
239
+ INNER JOIN {$wpdb->posts} as posts ON lookup.product_id = posts.ID
240
+ WHERE stock_quantity <= %d
241
+ AND posts.post_status = 'publish'",
242
  $nostock
243
  )
244
  );
includes/admin/class-wc-admin-help.php CHANGED
@@ -66,7 +66,7 @@ class WC_Admin_Help {
66
  '<h2>' . __( 'Found a bug?', 'woocommerce' ) . '</h2>' .
67
  /* translators: 1: GitHub issues URL 2: GitHub contribution guide URL 3: System status report URL */
68
  '<p>' . sprintf( __( 'If you find a bug within WooCommerce core you can create a ticket via <a href="%1$s">Github issues</a>. Ensure you read the <a href="%2$s">contribution guide</a> prior to submitting your report. To help us solve your issue, please be as descriptive as possible and include your <a href="%3$s">system status report</a>.', 'woocommerce' ), 'https://github.com/woocommerce/woocommerce/issues?state=open', 'https://github.com/woocommerce/woocommerce/blob/master/.github/CONTRIBUTING.md', admin_url( 'admin.php?page=wc-status' ) ) . '</p>' .
69
- '<p><a href="https://github.com/woocommerce/woocommerce/issues?state=open" class="button button-primary">' . __( 'Report a bug', 'woocommerce' ) . '</a> <a href="' . admin_url( 'admin.php?page=wc-status' ) . '" class="button">' . __( 'System status', 'woocommerce' ) . '</a></p>',
70
 
71
  )
72
  );
66
  '<h2>' . __( 'Found a bug?', 'woocommerce' ) . '</h2>' .
67
  /* translators: 1: GitHub issues URL 2: GitHub contribution guide URL 3: System status report URL */
68
  '<p>' . sprintf( __( 'If you find a bug within WooCommerce core you can create a ticket via <a href="%1$s">Github issues</a>. Ensure you read the <a href="%2$s">contribution guide</a> prior to submitting your report. To help us solve your issue, please be as descriptive as possible and include your <a href="%3$s">system status report</a>.', 'woocommerce' ), 'https://github.com/woocommerce/woocommerce/issues?state=open', 'https://github.com/woocommerce/woocommerce/blob/master/.github/CONTRIBUTING.md', admin_url( 'admin.php?page=wc-status' ) ) . '</p>' .
69
+ '<p><a href="https://github.com/woocommerce/woocommerce/issues/new?template=Bug_report.md" class="button button-primary">' . __( 'Report a bug', 'woocommerce' ) . '</a> <a href="' . admin_url( 'admin.php?page=wc-status' ) . '" class="button">' . __( 'System status', 'woocommerce' ) . '</a></p>',
70
 
71
  )
72
  );
includes/admin/class-wc-admin-post-types.php CHANGED
@@ -633,13 +633,13 @@ class WC_Admin_Post_Types {
633
  $change_stock = absint( $_REQUEST['change_stock'] );
634
  switch ( $change_stock ) {
635
  case 2:
636
- wc_update_product_stock( $product, $stock_amount, 'increase' );
637
  break;
638
  case 3:
639
- wc_update_product_stock( $product, $stock_amount, 'decrease' );
640
  break;
641
  default:
642
- wc_update_product_stock( $product, $stock_amount, 'set' );
643
  break;
644
  }
645
  }
633
  $change_stock = absint( $_REQUEST['change_stock'] );
634
  switch ( $change_stock ) {
635
  case 2:
636
+ wc_update_product_stock( $product, $stock_amount, 'increase', true );
637
  break;
638
  case 3:
639
+ wc_update_product_stock( $product, $stock_amount, 'decrease', true );
640
  break;
641
  default:
642
+ wc_update_product_stock( $product, $stock_amount, 'set', true );
643
  break;
644
  }
645
  }
includes/admin/class-wc-admin-settings.php CHANGED
@@ -135,10 +135,13 @@ if ( ! class_exists( 'WC_Admin_Settings', false ) ) :
135
  wp_enqueue_script( 'woocommerce_settings', WC()->plugin_url() . '/assets/js/admin/settings' . $suffix . '.js', array( 'jquery', 'wp-util', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'iris', 'selectWoo' ), WC()->version, true );
136
 
137
  wp_localize_script(
138
- 'woocommerce_settings', 'woocommerce_settings_params', array(
139
- 'i18n_nav_warning' => __( 'The changes you made will be lost if you navigate away from this page.', 'woocommerce' ),
140
- 'i18n_moved_up' => __( 'Item moved up', 'woocommerce' ),
141
- 'i18n_moved_down' => __( 'Item moved down', 'woocommerce' ),
 
 
 
142
  )
143
  );
144
 
@@ -391,7 +394,7 @@ if ( ! class_exists( 'WC_Admin_Settings', false ) ) :
391
  selected( $option_value, (string) $key );
392
  }
393
 
394
- ?>
395
  ><?php echo esc_html( $val ); ?></option>
396
  <?php
397
  }
@@ -494,7 +497,7 @@ if ( ! class_exists( 'WC_Admin_Settings', false ) ) :
494
  <?php
495
 
496
  if ( ! isset( $value['checkboxgroup'] ) || 'end' === $value['checkboxgroup'] ) {
497
- ?>
498
  </fieldset>
499
  </td>
500
  </tr>
135
  wp_enqueue_script( 'woocommerce_settings', WC()->plugin_url() . '/assets/js/admin/settings' . $suffix . '.js', array( 'jquery', 'wp-util', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'iris', 'selectWoo' ), WC()->version, true );
136
 
137
  wp_localize_script(
138
+ 'woocommerce_settings',
139
+ 'woocommerce_settings_params',
140
+ array(
141
+ 'i18n_nav_warning' => __( 'The changes you made will be lost if you navigate away from this page.', 'woocommerce' ),
142
+ 'i18n_moved_up' => __( 'Item moved up', 'woocommerce' ),
143
+ 'i18n_moved_down' => __( 'Item moved down', 'woocommerce' ),
144
+ 'i18n_no_specific_countries_selected' => __( 'Selecting no country to sell to prevents from completing the checkout. Continue anyway?', 'woocommerce' ),
145
  )
146
  );
147
 
394
  selected( $option_value, (string) $key );
395
  }
396
 
397
+ ?>
398
  ><?php echo esc_html( $val ); ?></option>
399
  <?php
400
  }
497
  <?php
498
 
499
  if ( ! isset( $value['checkboxgroup'] ) || 'end' === $value['checkboxgroup'] ) {
500
+ ?>
501
  </fieldset>
502
  </td>
503
  </tr>
includes/admin/class-wc-admin-setup-wizard.php CHANGED
@@ -1393,7 +1393,7 @@ class WC_Admin_Setup_Wizard {
1393
  'name' => __( 'WooCommerce PayPal Checkout Gateway', 'woocommerce' ),
1394
  'image' => WC()->plugin_url() . '/assets/images/paypal.png',
1395
  'description' => $paypal_checkout_description,
1396
- 'enabled' => true,
1397
  'class' => 'checked paypal-logo',
1398
  'repo-slug' => 'woocommerce-gateway-paypal-express-checkout',
1399
  'settings' => array(
@@ -1432,7 +1432,7 @@ class WC_Admin_Setup_Wizard {
1432
  'klarna_checkout' => array(
1433
  'name' => __( 'Klarna Checkout for WooCommerce', 'woocommerce' ),
1434
  'description' => $klarna_checkout_description,
1435
- 'image' => WC()->plugin_url() . '/assets/images/klarna-white.png',
1436
  'enabled' => true,
1437
  'class' => 'klarna-logo',
1438
  'repo-slug' => 'klarna-checkout-for-woocommerce',
@@ -1440,7 +1440,7 @@ class WC_Admin_Setup_Wizard {
1440
  'klarna_payments' => array(
1441
  'name' => __( 'Klarna Payments for WooCommerce', 'woocommerce' ),
1442
  'description' => $klarna_payments_description,
1443
- 'image' => WC()->plugin_url() . '/assets/images/klarna-white.png',
1444
  'enabled' => true,
1445
  'class' => 'klarna-logo',
1446
  'repo-slug' => 'klarna-payments-for-woocommerce',
@@ -1448,9 +1448,9 @@ class WC_Admin_Setup_Wizard {
1448
  'square' => array(
1449
  'name' => __( 'WooCommerce Square', 'woocommerce' ),
1450
  'description' => $square_description,
1451
- 'image' => WC()->plugin_url() . '/assets/images/square-white.png',
1452
  'class' => 'square-logo',
1453
- 'enabled' => true,
1454
  'repo-slug' => 'woocommerce-square',
1455
  ),
1456
  'eway' => array(
@@ -1503,16 +1503,31 @@ class WC_Admin_Setup_Wizard {
1503
  }
1504
 
1505
  if ( $spotlight ) {
1506
- $offered_gateways = array(
1507
- $spotlight => $gateways[ $spotlight ],
1508
- );
1509
 
1510
- if ( $can_paypal ) {
1511
- $offered_gateways += array( 'ppec_paypal' => $gateways['ppec_paypal'] );
 
 
 
 
1512
  }
1513
 
1514
- if ( $can_stripe ) {
1515
- $offered_gateways += array( 'stripe' => $gateways['stripe'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
1516
  }
1517
 
1518
  if ( $can_eway ) {
@@ -1532,6 +1547,8 @@ class WC_Admin_Setup_Wizard {
1532
  $gateways['stripe']['enabled'] = true;
1533
  $gateways['stripe']['featured'] = true;
1534
  $offered_gateways += array( 'stripe' => $gateways['stripe'] );
 
 
1535
  }
1536
 
1537
  if ( $can_paypal ) {
@@ -1596,7 +1613,7 @@ class WC_Admin_Setup_Wizard {
1596
  // Show the user-saved state if it was previously saved.
1597
  // Otherwise, rely on the item info.
1598
  if ( is_array( $previously_saved_settings ) ) {
1599
- $should_enable_toggle = isset( $previously_saved_settings['enabled'] ) && 'yes' === $previously_saved_settings['enabled'];
1600
  } else {
1601
  $should_enable_toggle = isset( $item_info['enabled'] ) && $item_info['enabled'];
1602
  }
1393
  'name' => __( 'WooCommerce PayPal Checkout Gateway', 'woocommerce' ),
1394
  'image' => WC()->plugin_url() . '/assets/images/paypal.png',
1395
  'description' => $paypal_checkout_description,
1396
+ 'enabled' => false,
1397
  'class' => 'checked paypal-logo',
1398
  'repo-slug' => 'woocommerce-gateway-paypal-express-checkout',
1399
  'settings' => array(
1432
  'klarna_checkout' => array(
1433
  'name' => __( 'Klarna Checkout for WooCommerce', 'woocommerce' ),
1434
  'description' => $klarna_checkout_description,
1435
+ 'image' => WC()->plugin_url() . '/assets/images/klarna-black.png',
1436
  'enabled' => true,
1437
  'class' => 'klarna-logo',
1438
  'repo-slug' => 'klarna-checkout-for-woocommerce',
1440
  'klarna_payments' => array(
1441
  'name' => __( 'Klarna Payments for WooCommerce', 'woocommerce' ),
1442
  'description' => $klarna_payments_description,
1443
+ 'image' => WC()->plugin_url() . '/assets/images/klarna-black.png',
1444
  'enabled' => true,
1445
  'class' => 'klarna-logo',
1446
  'repo-slug' => 'klarna-payments-for-woocommerce',
1448
  'square' => array(
1449
  'name' => __( 'WooCommerce Square', 'woocommerce' ),
1450
  'description' => $square_description,
1451
+ 'image' => WC()->plugin_url() . '/assets/images/square-black.png',
1452
  'class' => 'square-logo',
1453
+ 'enabled' => false,
1454
  'repo-slug' => 'woocommerce-square',
1455
  ),
1456
  'eway' => array(
1503
  }
1504
 
1505
  if ( $spotlight ) {
1506
+ $offered_gateways = array();
 
 
1507
 
1508
+ if ( $can_stripe ) {
1509
+ $gateways['stripe']['enabled'] = true;
1510
+ $gateways['stripe']['featured'] = true;
1511
+ $offered_gateways += array( 'stripe' => $gateways['stripe'] );
1512
+ } elseif ( $can_paypal ) {
1513
+ $gateways['ppec_paypal']['enabled'] = true;
1514
  }
1515
 
1516
+ if ( in_array( $spotlight, array( 'klarna_checkout', 'klarna_payments' ), true ) ) {
1517
+ $gateways[ $spotlight ]['enabled'] = true;
1518
+ $gateways[ $spotlight ]['featured'] = false;
1519
+ $offered_gateways += array(
1520
+ $spotlight => $gateways[ $spotlight ],
1521
+ );
1522
+
1523
+ } else {
1524
+ $offered_gateways += array(
1525
+ $spotlight => $gateways[ $spotlight ],
1526
+ );
1527
+ }
1528
+
1529
+ if ( $can_paypal ) {
1530
+ $offered_gateways += array( 'ppec_paypal' => $gateways['ppec_paypal'] );
1531
  }
1532
 
1533
  if ( $can_eway ) {
1547
  $gateways['stripe']['enabled'] = true;
1548
  $gateways['stripe']['featured'] = true;
1549
  $offered_gateways += array( 'stripe' => $gateways['stripe'] );
1550
+ } elseif ( $can_paypal ) {
1551
+ $gateways['ppec_paypal']['enabled'] = true;
1552
  }
1553
 
1554
  if ( $can_paypal ) {
1613
  // Show the user-saved state if it was previously saved.
1614
  // Otherwise, rely on the item info.
1615
  if ( is_array( $previously_saved_settings ) ) {
1616
+ $should_enable_toggle = ( isset( $previously_saved_settings['enabled'] ) && 'yes' === $previously_saved_settings['enabled'] ) ? true : ( isset( $item_info['enabled'] ) && $item_info['enabled'] );
1617
  } else {
1618
  $should_enable_toggle = isset( $item_info['enabled'] ) && $item_info['enabled'];
1619
  }
includes/admin/class-wc-admin.php CHANGED
@@ -30,6 +30,9 @@ class WC_Admin {
30
  add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ), 1 );
31
  add_action( 'wp_ajax_setup_wizard_check_jetpack', array( $this, 'setup_wizard_check_jetpack' ) );
32
  add_action( 'init', array( 'WC_Site_Tracking', 'init' ) );
 
 
 
33
  }
34
 
35
  /**
@@ -69,8 +72,8 @@ class WC_Admin {
69
  }
70
 
71
  // Setup/welcome.
72
- if ( ! empty( $_GET['page'] ) ) {
73
- switch ( $_GET['page'] ) {
74
  case 'wc-setup':
75
  include_once dirname( __FILE__ ) . '/class-wc-admin-setup-wizard.php';
76
  break;
@@ -251,7 +254,7 @@ class WC_Admin {
251
  $wc_pages = array_diff( $wc_pages, array( 'profile', 'user-edit' ) );
252
 
253
  // Check to make sure we're on a WooCommerce admin page.
254
- if ( isset( $current_screen->id ) && apply_filters( 'woocommerce_display_admin_footer_text', in_array( $current_screen->id, $wc_pages ) ) ) {
255
  // Change the footer text.
256
  if ( ! get_option( 'woocommerce_admin_footer_text_rated' ) ) {
257
  $footer_text = sprintf(
@@ -288,6 +291,20 @@ class WC_Admin {
288
  )
289
  );
290
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  }
292
 
293
  return new WC_Admin();
30
  add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ), 1 );
31
  add_action( 'wp_ajax_setup_wizard_check_jetpack', array( $this, 'setup_wizard_check_jetpack' ) );
32
  add_action( 'init', array( 'WC_Site_Tracking', 'init' ) );
33
+
34
+ // Disable WXR export of schedule action posts.
35
+ add_filter( 'action_scheduler_post_type_args', array( $this, 'disable_webhook_post_export' ) );
36
  }
37
 
38
  /**
72
  }
73
 
74
  // Setup/welcome.
75
+ if ( ! empty( $_GET['page'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.NoNonceVerification
76
+ switch ( $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.NoNonceVerification
77
  case 'wc-setup':
78
  include_once dirname( __FILE__ ) . '/class-wc-admin-setup-wizard.php';
79
  break;
254
  $wc_pages = array_diff( $wc_pages, array( 'profile', 'user-edit' ) );
255
 
256
  // Check to make sure we're on a WooCommerce admin page.
257
+ if ( isset( $current_screen->id ) && apply_filters( 'woocommerce_display_admin_footer_text', in_array( $current_screen->id, $wc_pages, true ) ) ) {
258
  // Change the footer text.
259
  if ( ! get_option( 'woocommerce_admin_footer_text_rated' ) ) {
260
  $footer_text = sprintf(
291
  )
292
  );
293
  }
294
+
295
+ /**
296
+ * Disable WXR export of scheduled action posts.
297
+ *
298
+ * @since 3.6.2
299
+ *
300
+ * @param array $args Scehduled action post type registration args.
301
+ *
302
+ * @return array
303
+ */
304
+ public function disable_webhook_post_export( $args ) {
305
+ $args['can_export'] = false;
306
+ return $args;
307
+ }
308
  }
309
 
310
  return new WC_Admin();
includes/admin/list-tables/class-wc-admin-list-table-products.php CHANGED
@@ -40,7 +40,6 @@ class WC_Admin_List_Table_Products extends WC_Admin_List_Table {
40
  add_filter( 'views_edit-product', array( $this, 'product_views' ) );
41
  add_filter( 'get_search_query', array( $this, 'search_label' ) );
42
  add_filter( 'posts_clauses', array( $this, 'posts_clauses' ), 10, 2 );
43
- add_filter( 'the_posts', array( $this, 'remove_ordering_args' ) );
44
  }
45
 
46
  /**
@@ -451,6 +450,7 @@ class WC_Admin_List_Table_Products extends WC_Admin_List_Table {
451
  * @return array
452
  */
453
  protected function query_filters( $query_vars ) {
 
454
  // Custom order by arguments.
455
  if ( isset( $query_vars['orderby'] ) ) {
456
  $orderby = strtolower( $query_vars['orderby'] );
@@ -520,10 +520,10 @@ class WC_Admin_List_Table_Products extends WC_Admin_List_Table {
520
  /**
521
  * Remove ordering queries.
522
  *
523
- * @param array $posts Posts from WP Query.
524
  * @return array
525
  */
526
- public function remove_ordering_args( $posts ) {
527
  remove_filter( 'posts_clauses', array( $this, 'order_by_price_asc_post_clauses' ) );
528
  remove_filter( 'posts_clauses', array( $this, 'order_by_price_desc_post_clauses' ) );
529
  remove_filter( 'posts_clauses', array( $this, 'order_by_sku_asc_post_clauses' ) );
@@ -531,7 +531,7 @@ class WC_Admin_List_Table_Products extends WC_Admin_List_Table {
531
  remove_filter( 'posts_clauses', array( $this, 'filter_downloadable_post_clauses' ) );
532
  remove_filter( 'posts_clauses', array( $this, 'filter_virtual_post_clauses' ) );
533
  remove_filter( 'posts_clauses', array( $this, 'filter_stock_status_post_clauses' ) );
534
- return $posts;
535
  }
536
 
537
  /**
40
  add_filter( 'views_edit-product', array( $this, 'product_views' ) );
41
  add_filter( 'get_search_query', array( $this, 'search_label' ) );
42
  add_filter( 'posts_clauses', array( $this, 'posts_clauses' ), 10, 2 );
 
43
  }
44
 
45
  /**
450
  * @return array
451
  */
452
  protected function query_filters( $query_vars ) {
453
+ $this->remove_ordering_args();
454
  // Custom order by arguments.
455
  if ( isset( $query_vars['orderby'] ) ) {
456
  $orderby = strtolower( $query_vars['orderby'] );
520
  /**
521
  * Remove ordering queries.
522
  *
523
+ * @param array $posts Posts array, keeping this for backwards compatibility defaulting to empty array.
524
  * @return array
525
  */
526
+ public function remove_ordering_args( $posts = array() ) {
527
  remove_filter( 'posts_clauses', array( $this, 'order_by_price_asc_post_clauses' ) );
528
  remove_filter( 'posts_clauses', array( $this, 'order_by_price_desc_post_clauses' ) );
529
  remove_filter( 'posts_clauses', array( $this, 'order_by_sku_asc_post_clauses' ) );
531
  remove_filter( 'posts_clauses', array( $this, 'filter_downloadable_post_clauses' ) );
532
  remove_filter( 'posts_clauses', array( $this, 'filter_virtual_post_clauses' ) );
533
  remove_filter( 'posts_clauses', array( $this, 'filter_stock_status_post_clauses' ) );
534
+ return $posts; // Keeping this here for backward compatibility.
535
  }
536
 
537
  /**
includes/admin/meta-boxes/views/html-product-attribute.php CHANGED
@@ -40,7 +40,7 @@ if ( ! defined( 'ABSPATH' ) ) {
40
  <select multiple="multiple" data-placeholder="<?php esc_attr_e( 'Select terms', 'woocommerce' ); ?>" class="multiselect attribute_values wc-enhanced-select" name="attribute_values[<?php echo esc_attr( $i ); ?>][]">
41
  <?php
42
  $args = array(
43
- 'orderby' => 'name',
44
  'hide_empty' => 0,
45
  );
46
  $all_terms = get_terms( $attribute->get_taxonomy(), apply_filters( 'woocommerce_product_attribute_terms', $args ) );
40
  <select multiple="multiple" data-placeholder="<?php esc_attr_e( 'Select terms', 'woocommerce' ); ?>" class="multiselect attribute_values wc-enhanced-select" name="attribute_values[<?php echo esc_attr( $i ); ?>][]">
41
  <?php
42
  $args = array(
43
+ 'orderby' => ! empty( $attribute_taxonomy->attribute_orderby ) ? $attribute_taxonomy->attribute_orderby : 'name',
44
  'hide_empty' => 0,
45
  );
46
  $all_terms = get_terms( $attribute->get_taxonomy(), apply_filters( 'woocommerce_product_attribute_terms', $args ) );
includes/admin/views/html-admin-page-status-report.php CHANGED
@@ -785,7 +785,7 @@ if ( 0 < count( $dropins_mu_plugins['mu_plugins'] ) ) :
785
  <tr>
786
  <td data-export-label="Connected to WooCommerce.com"><?php esc_html_e( 'Connected to WooCommerce.com', 'woocommerce' ); ?>:</td>
787
  <td class="help"><?php echo wc_help_tip( esc_html__( 'Are your site connected to WooCommerce.com?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td>
788
- <td><?php echo $settings['woocommerce_com_connected'] ? '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>' : '<mark class="no">&ndash;</mark>'; ?></td>
789
  </tr>
790
  </tbody>
791
  </table>
785
  <tr>
786
  <td data-export-label="Connected to WooCommerce.com"><?php esc_html_e( 'Connected to WooCommerce.com', 'woocommerce' ); ?>:</td>
787
  <td class="help"><?php echo wc_help_tip( esc_html__( 'Are your site connected to WooCommerce.com?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td>
788
+ <td><?php echo 'yes' === $settings['woocommerce_com_connected'] ? '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>' : '<mark class="no">&ndash;</mark>'; ?></td>
789
  </tr>
790
  </tbody>
791
  </table>
includes/admin/views/html-notice-legacy-shipping.php CHANGED
@@ -1,22 +1,34 @@
1
  <?php
2
  /**
3
  * Admin View: Notice - Legacy Shipping.
 
 
4
  */
5
 
6
  if ( ! defined( 'ABSPATH' ) ) {
7
  exit;
8
  }
9
  ?>
10
- <div id="message" class="updated woocommerce-message woocommerce-legacy-shipping-notice">
11
- <a class="woocommerce-message-close notice-dismiss" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', 'legacy_shipping' ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?>"><?php _e( 'Dismiss', 'woocommerce' ); ?></a>
 
 
12
 
13
- <p class="main"><strong><?php _e( 'New:', 'woocommerce' ); ?> <?php _e( 'Shipping zones', 'woocommerce' ); ?></strong> &#8211; <?php _e( 'a group of regions that can be assigned different shipping methods and rates.', 'woocommerce' ); ?></p>
14
- <p><?php _e( 'Legacy shipping methods (flat rate, international flat rate, local pickup and delivery, and free shipping) are deprecated but will continue to work as normal for now. <b><em>They will be removed in future versions of WooCommerce</em></b>. We recommend disabling these and setting up new rates within shipping zones as soon as possible.', 'woocommerce' ); ?></p>
 
 
 
 
15
 
16
  <p class="submit">
17
  <?php if ( empty( $_GET['page'] ) || empty( $_GET['tab'] ) || 'wc-settings' !== $_GET['page'] || 'shipping' !== $_GET['tab'] ) : ?>
18
- <a class="button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=wc-settings&tab=shipping' ) ); ?>"><?php _e( 'Setup shipping zones', 'woocommerce' ); ?></a>
 
 
19
  <?php endif; ?>
20
- <a class="button-secondary" href="https://docs.woocommerce.com/document/setting-up-shipping-zones/"><?php _e( 'Learn more about shipping zones', 'woocommerce' ); ?></a>
 
 
21
  </p>
22
  </div>
1
  <?php
2
  /**
3
  * Admin View: Notice - Legacy Shipping.
4
+ *
5
+ * @package WooCommerce\Admin\Notices
6
  */
7
 
8
  if ( ! defined( 'ABSPATH' ) ) {
9
  exit;
10
  }
11
  ?>
12
+ <div id="message" class="updated woocommerce-message">
13
+ <a class="woocommerce-message-close notice-dismiss" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', 'legacy_shipping' ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?>">
14
+ <?php esc_html_e( 'Dismiss', 'woocommerce' ); ?>
15
+ </a>
16
 
17
+ <p class="main">
18
+ <strong><?php esc_html_e( 'New:', 'woocommerce' ); ?> <?php esc_html_e( 'Shipping zones', 'woocommerce' ); ?></strong> &#8211; <?php esc_html_e( 'a group of regions that can be assigned different shipping methods and rates.', 'woocommerce' ); ?>
19
+ </p>
20
+ <p>
21
+ <?php esc_html_e( 'Legacy shipping methods (flat rate, international flat rate, local pickup and delivery, and free shipping) are deprecated but will continue to work as normal for now. <b><em>They will be removed in future versions of WooCommerce</em></b>. We recommend disabling these and setting up new rates within shipping zones as soon as possible.', 'woocommerce' ); ?>
22
+ </p>
23
 
24
  <p class="submit">
25
  <?php if ( empty( $_GET['page'] ) || empty( $_GET['tab'] ) || 'wc-settings' !== $_GET['page'] || 'shipping' !== $_GET['tab'] ) : ?>
26
+ <a class="button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=wc-settings&tab=shipping' ) ); ?>">
27
+ <?php esc_html_e( 'Setup shipping zones', 'woocommerce' ); ?>
28
+ </a>
29
  <?php endif; ?>
30
+ <a class="button-secondary" href="https://docs.woocommerce.com/document/setting-up-shipping-zones/">
31
+ <?php esc_html_e( 'Learn more about shipping zones', 'woocommerce' ); ?>
32
+ </a>
33
  </p>
34
  </div>
includes/admin/views/html-notice-no-shipping-methods.php CHANGED
@@ -1,21 +1,37 @@
1
  <?php
2
  /**
3
  * Admin View: Notice - No Shipping methods.
 
 
4
  */
5
 
6
  if ( ! defined( 'ABSPATH' ) ) {
7
  exit;
8
  }
9
  ?>
10
- <div id="message" class="updated woocommerce-message woocommerce-no-shipping-methods-notice">
11
- <a class="woocommerce-message-close notice-dismiss" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', 'no_shipping_methods' ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?>"><?php _e( 'Dismiss', 'woocommerce' ); ?></a>
 
 
12
 
13
- <p class="main"><strong><?php _e( 'Add shipping methods &amp; zones', 'woocommerce' ); ?></strong></p>
14
- <p><?php _e( 'Shipping is currently enabled, but you have not added any shipping methods to your shipping zones.', 'woocommerce' ); ?></p>
15
- <p><?php _e( 'Customers will not be able to purchase physical goods from your store until a shipping method is available.', 'woocommerce' ); ?></p>
 
 
 
 
 
 
 
 
16
 
17
  <p class="submit">
18
- <a class="button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=wc-settings&tab=shipping' ) ); ?>"><?php _e( 'Setup shipping zones', 'woocommerce' ); ?></a>
19
- <a class="button-secondary" href="https://docs.woocommerce.com/document/setting-up-shipping-zones/"><?php _e( 'Learn more about shipping zones', 'woocommerce' ); ?></a>
 
 
 
 
20
  </p>
21
  </div>
1
  <?php
2
  /**
3
  * Admin View: Notice - No Shipping methods.
4
+ *
5
+ * @package WooCommerce\Admin\Notices
6
  */
7
 
8
  if ( ! defined( 'ABSPATH' ) ) {
9
  exit;
10
  }
11
  ?>
12
+ <div id="message" class="updated woocommerce-message">
13
+ <a class="woocommerce-message-close notice-dismiss" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', 'no_shipping_methods' ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?>">
14
+ <?php esc_html_e( 'Dismiss', 'woocommerce' ); ?>
15
+ </a>
16
 
17
+ <p class="main">
18
+ <strong>
19
+ <?php esc_html_e( 'Add shipping methods &amp; zones', 'woocommerce' ); ?>
20
+ </strong>
21
+ </p>
22
+ <p>
23
+ <?php esc_html_e( 'Shipping is currently enabled, but you have not added any shipping methods to your shipping zones.', 'woocommerce' ); ?>
24
+ </p>
25
+ <p>
26
+ <?php esc_html_e( 'Customers will not be able to purchase physical goods from your store until a shipping method is available.', 'woocommerce' ); ?>
27
+ </p>
28
 
29
  <p class="submit">
30
+ <a class="button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=wc-settings&tab=shipping' ) ); ?>">
31
+ <?php esc_html_e( 'Setup shipping zones', 'woocommerce' ); ?>
32
+ </a>
33
+ <a class="button-secondary" href="https://docs.woocommerce.com/document/setting-up-shipping-zones/">
34
+ <?php esc_html_e( 'Learn more about shipping zones', 'woocommerce' ); ?>
35
+ </a>
36
  </p>
37
  </div>
includes/api/v2/class-wc-rest-system-status-v2-controller.php CHANGED
@@ -876,8 +876,8 @@ class WC_REST_System_Status_V2_Controller extends WC_REST_Controller {
876
  $version_latest = $data['Version'];
877
 
878
  // Find latest version.
879
- if ( isset( $available_updates[ $plugin ]->update->new_version ) ) {
880
- $version_latest = $available_updates[ $plugin ]->update->new_version;
881
  }
882
 
883
  return array(
876
  $version_latest = $data['Version'];
877
 
878
  // Find latest version.
879
+ if ( isset( $this->available_updates[ $plugin ]->update->new_version ) ) {
880
+ $version_latest = $this->available_updates[ $plugin ]->update->new_version;
881
  }
882
 
883
  return array(
includes/class-wc-checkout.php CHANGED
@@ -1176,7 +1176,7 @@ class WC_Checkout {
1176
  if ( is_user_logged_in() ) {
1177
  // Load customer object, but keep it cached to avoid reloading it multiple times.
1178
  if ( is_null( $this->logged_in_customer ) ) {
1179
- $this->logged_in_customer = new WC_Customer( get_current_user_id() );
1180
  }
1181
  $customer_object = $this->logged_in_customer;
1182
  }
1176
  if ( is_user_logged_in() ) {
1177
  // Load customer object, but keep it cached to avoid reloading it multiple times.
1178
  if ( is_null( $this->logged_in_customer ) ) {
1179
+ $this->logged_in_customer = new WC_Customer( get_current_user_id(), true );
1180
  }
1181
  $customer_object = $this->logged_in_customer;
1182
  }
includes/class-wc-countries.php CHANGED
@@ -501,6 +501,7 @@ class WC_Countries {
501
  'PL' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
502
  'PT' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
503
  'SK' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
 
504
  'SI' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
505
  'ES' => "{name}\n{company}\n{address_1}\n{address_2}\n{postcode} {city}\n{state}\n{country}",
506
  'SE' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
@@ -1103,6 +1104,12 @@ class WC_Countries {
1103
  'required' => true,
1104
  ),
1105
  ),
 
 
 
 
 
 
1106
  'SG' => array(
1107
  'state' => array(
1108
  'required' => false,
501
  'PL' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
502
  'PT' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
503
  'SK' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
504
+ 'RS' => "{name}\n{company}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
505
  'SI' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
506
  'ES' => "{name}\n{company}\n{address_1}\n{address_2}\n{postcode} {city}\n{state}\n{country}",
507
  'SE' => "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}",
1104
  'required' => true,
1105
  ),
1106
  ),
1107
+ 'RS' => array(
1108
+ 'state' => array(
1109
+ 'required' => false,
1110
+ 'hidden' => true,
1111
+ ),
1112
+ ),
1113
  'SG' => array(
1114
  'state' => array(
1115
  'required' => false,
includes/class-wc-customer.php CHANGED
@@ -35,10 +35,10 @@ class WC_Customer extends WC_Legacy_Customer {
35
  'company' => '',
36
  'address_1' => '',
37
  'address_2' => '',
38
- 'city' => '',
39
- 'state' => '',
40
  'postcode' => '',
41
  'country' => '',
 
42
  'email' => '',
43
  'phone' => '',
44
  ),
@@ -48,10 +48,10 @@ class WC_Customer extends WC_Legacy_Customer {
48
  'company' => '',
49
  'address_1' => '',
50
  'address_2' => '',
51
- 'city' => '',
52
- 'state' => '',
53
  'postcode' => '',
54
  'country' => '',
 
55
  ),
56
  'is_paying_customer' => false,
57
  );
35
  'company' => '',
36
  'address_1' => '',
37
  'address_2' => '',
38
+ 'city' => '',
 
39
  'postcode' => '',
40
  'country' => '',
41
+ 'state' => '',
42
  'email' => '',
43
  'phone' => '',
44
  ),
48
  'company' => '',
49
  'address_1' => '',
50
  'address_2' => '',
51
+ 'city' => '',
 
52
  'postcode' => '',
53
  'country' => '',
54
+ 'state' => '',
55
  ),
56
  'is_paying_customer' => false,
57
  );
includes/class-wc-form-handler.php CHANGED
@@ -961,7 +961,7 @@ class WC_Form_Handler {
961
  try {
962
  $creds = array(
963
  'user_login' => trim( wp_unslash( $_POST['username'] ) ), // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
964
- 'user_password' => wp_unslash( $_POST['password'] ), // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
965
  'remember' => isset( $_POST['rememberme'] ), // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
966
  );
967
 
961
  try {
962
  $creds = array(
963
  'user_login' => trim( wp_unslash( $_POST['username'] ) ), // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
964
+ 'user_password' => $_POST['password'], // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash
965
  'remember' => isset( $_POST['rememberme'] ), // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
966
  );
967
 
includes/class-wc-tracker.php CHANGED
@@ -509,7 +509,7 @@ class WC_Tracker {
509
  FROM {$wpdb->prefix}posts AS orders
510
  LEFT JOIN {$wpdb->prefix}postmeta AS order_meta ON order_meta.post_id = orders.ID
511
  WHERE order_meta.meta_key = '_order_total'
512
- AND orders.post_status = 'wc-completed'
513
  GROUP BY order_meta.meta_key
514
  "
515
  );
509
  FROM {$wpdb->prefix}posts AS orders
510
  LEFT JOIN {$wpdb->prefix}postmeta AS order_meta ON order_meta.post_id = orders.ID
511
  WHERE order_meta.meta_key = '_order_total'
512
+ AND orders.post_status in ( 'wc-completed', 'wc-refunded' )
513
  GROUP BY order_meta.meta_key
514
  "
515
  );
includes/class-wc-webhook.php CHANGED
@@ -38,7 +38,7 @@ class WC_Webhook extends WC_Legacy_Webhook {
38
  'event' => '',
39
  'failure_count' => 0,
40
  'user_id' => 0,
41
- 'api_version' => 2,
42
  'pending_delivery' => false,
43
  );
44
 
38
  'event' => '',
39
  'failure_count' => 0,
40
  'user_id' => 0,
41
+ 'api_version' => 3,
42
  'pending_delivery' => false,
43
  );
44
 
includes/class-woocommerce.php CHANGED
@@ -20,7 +20,7 @@ final class WooCommerce {
20
  *
21
  * @var string
22
  */
23
- public $version = '3.6.2';
24
 
25
  /**
26
  * The single instance of the class.
@@ -152,6 +152,7 @@ final class WooCommerce {
152
  */
153
  public function __construct() {
154
  $this->define_constants();
 
155
  $this->includes();
156
  $this->init_hooks();
157
  }
@@ -184,7 +185,6 @@ final class WooCommerce {
184
  add_action( 'init', array( $this, 'init' ), 0 );
185
  add_action( 'init', array( 'WC_Shortcodes', 'init' ) );
186
  add_action( 'init', array( 'WC_Emails', 'init_transactional_emails' ) );
187
- add_action( 'init', array( $this, 'wpdb_table_fix' ), 0 );
188
  add_action( 'init', array( $this, 'add_image_sizes' ) );
189
  add_action( 'switch_blog', array( $this, 'wpdb_table_fix' ), 0 );
190
  add_action( 'activated_plugin', array( $this, 'activated_plugin' ) );
@@ -230,6 +230,25 @@ final class WooCommerce {
230
  $this->define( 'WC_TEMPLATE_DEBUG_MODE', false );
231
  }
232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  /**
234
  * Define constant if not already set.
235
  *
@@ -710,16 +729,7 @@ final class WooCommerce {
710
  * Set tablenames inside WPDB object.
711
  */
712
  public function wpdb_table_fix() {
713
- global $wpdb;
714
-
715
- $wpdb->payment_tokenmeta = $wpdb->prefix . 'woocommerce_payment_tokenmeta';
716
- $wpdb->tables[] = 'woocommerce_payment_tokenmeta';
717
-
718
- $wpdb->order_itemmeta = $wpdb->prefix . 'woocommerce_order_itemmeta';
719
- $wpdb->tables[] = 'woocommerce_order_itemmeta';
720
-
721
- $wpdb->wc_product_meta_lookup = $wpdb->prefix . 'wc_product_meta_lookup';
722
- $wpdb->tables[] = 'wc_product_meta_lookup';
723
  }
724
 
725
  /**
20
  *
21
  * @var string
22
  */
23
+ public $version = '3.6.3';
24
 
25
  /**
26
  * The single instance of the class.
152
  */
153
  public function __construct() {
154
  $this->define_constants();
155
+ $this->define_tables();
156
  $this->includes();
157
  $this->init_hooks();
158
  }
185
  add_action( 'init', array( $this, 'init' ), 0 );
186
  add_action( 'init', array( 'WC_Shortcodes', 'init' ) );
187
  add_action( 'init', array( 'WC_Emails', 'init_transactional_emails' ) );
 
188
  add_action( 'init', array( $this, 'add_image_sizes' ) );
189
  add_action( 'switch_blog', array( $this, 'wpdb_table_fix' ), 0 );
190
  add_action( 'activated_plugin', array( $this, 'activated_plugin' ) );
230
  $this->define( 'WC_TEMPLATE_DEBUG_MODE', false );
231
  }
232
 
233
+ /**
234
+ * Register custom tables within $wpdb object.
235
+ */
236
+ private function define_tables() {
237
+ global $wpdb;
238
+
239
+ // List of tables without prefixes.
240
+ $tables = array(
241
+ 'payment_tokenmeta' => 'woocommerce_payment_tokenmeta',
242
+ 'order_itemmeta' => 'woocommerce_order_itemmeta',
243
+ 'wc_product_meta_lookup' => 'wc_product_meta_lookup',
244
+ );
245
+
246
+ foreach ( $tables as $name => $table ) {
247
+ $wpdb->$name = $wpdb->prefix . $table;
248
+ $wpdb->tables[] = $table;
249
+ }
250
+ }
251
+
252
  /**
253
  * Define constant if not already set.
254
  *
729
  * Set tablenames inside WPDB object.
730
  */
731
  public function wpdb_table_fix() {
732
+ $this->define_tables();
 
 
 
 
 
 
 
 
 
733
  }
734
 
735
  /**
includes/cli/class-wc-cli-update-command.php CHANGED
@@ -49,6 +49,8 @@ class WC_CLI_Update_Command {
49
  }
50
 
51
  if ( empty( $callbacks_to_run ) ) {
 
 
52
  /* translators: %s Database version number */
53
  WP_CLI::success( sprintf( __( 'No updates required. Database version is %s', 'woocommerce' ), get_option( 'woocommerce_db_version' ) ) );
54
  return;
49
  }
50
 
51
  if ( empty( $callbacks_to_run ) ) {
52
+ // Ensure DB version is set to the current WC version to match WP-Admin update routine.
53
+ WC_Install::update_db_version();
54
  /* translators: %s Database version number */
55
  WP_CLI::success( sprintf( __( 'No updates required. Database version is %s', 'woocommerce' ), get_option( 'woocommerce_db_version' ) ) );
56
  return;
includes/data-stores/class-wc-coupon-data-store-cpt.php CHANGED
@@ -115,7 +115,7 @@ class WC_Coupon_Data_Store_CPT extends WC_Data_Store_WP implements WC_Coupon_Dat
115
  'description' => $post_object->post_excerpt,
116
  'date_created' => 0 < $post_object->post_date_gmt ? wc_string_to_timestamp( $post_object->post_date_gmt ) : null,
117
  'date_modified' => 0 < $post_object->post_modified_gmt ? wc_string_to_timestamp( $post_object->post_modified_gmt ) : null,
118
- 'date_expires' => get_post_meta( $coupon_id, 'date_expires', true ),
119
  'discount_type' => get_post_meta( $coupon_id, 'discount_type', true ),
120
  'amount' => get_post_meta( $coupon_id, 'coupon_amount', true ),
121
  'usage_count' => get_post_meta( $coupon_id, 'usage_count', true ),
115
  'description' => $post_object->post_excerpt,
116
  'date_created' => 0 < $post_object->post_date_gmt ? wc_string_to_timestamp( $post_object->post_date_gmt ) : null,
117
  'date_modified' => 0 < $post_object->post_modified_gmt ? wc_string_to_timestamp( $post_object->post_modified_gmt ) : null,
118
+ 'date_expires' => metadata_exists( 'post', $coupon_id, 'date_expires' ) ? get_post_meta( $coupon_id, 'date_expires', true ) : get_post_meta( $coupon_id, 'expiry_date', true ), // @todo: Migrate expiry_date meta to date_expires in upgrade routine.
119
  'discount_type' => get_post_meta( $coupon_id, 'discount_type', true ),
120
  'amount' => get_post_meta( $coupon_id, 'coupon_amount', true ),
121
  'usage_count' => get_post_meta( $coupon_id, 'usage_count', true ),
includes/data-stores/class-wc-data-store-wp.php CHANGED
@@ -578,6 +578,8 @@ class WC_Data_Store_WP {
578
  * @since 3.6.0
579
  * @param int $id ID of object to update.
580
  * @param string $table Lookup table name.
 
 
581
  */
582
  protected function update_lookup_table( $id, $table ) {
583
  global $wpdb;
578
  * @since 3.6.0
579
  * @param int $id ID of object to update.
580
  * @param string $table Lookup table name.
581
+ *
582
+ * @return NULL
583
  */
584
  protected function update_lookup_table( $id, $table ) {
585
  global $wpdb;
includes/data-stores/class-wc-product-data-store-cpt.php CHANGED
@@ -363,6 +363,19 @@ class WC_Product_Data_Store_CPT extends WC_Data_Store_WP implements WC_Object_Da
363
  $product->set_props( $set_props );
364
  }
365
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
  /**
367
  * Read extra data associated with the product, like button text or product URL for external products.
368
  *
@@ -1285,50 +1298,92 @@ class WC_Product_Data_Store_CPT extends WC_Data_Store_WP implements WC_Object_Da
1285
  return $query;
1286
  }
1287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1288
  /**
1289
  * Update a product's stock amount directly.
1290
  *
1291
  * Uses queries rather than update_post_meta so we can do this in one query (to avoid stock issues).
 
 
1292
  *
1293
  * @since 3.0.0 this supports set, increase and decrease.
1294
- * @param int $product_id_with_stock Product ID.
1295
- * @param int|null $stock_quantity Stock quantity.
1296
- * @param string $operation Set, increase and decrease.
 
1297
  */
1298
  public function update_product_stock( $product_id_with_stock, $stock_quantity = null, $operation = 'set' ) {
1299
  global $wpdb;
 
 
1300
  add_post_meta( $product_id_with_stock, '_stock', 0, true );
1301
 
1302
- // Update stock in DB directly.
1303
- switch ( $operation ) {
1304
- case 'increase':
1305
- $sql = $wpdb->prepare(
1306
- "UPDATE {$wpdb->postmeta} SET meta_value = meta_value + %f WHERE post_id = %d AND meta_key='_stock'",
1307
- $stock_quantity,
1308
- $product_id_with_stock
1309
- );
1310
- break;
1311
- case 'decrease':
1312
- $sql = $wpdb->prepare(
1313
- "UPDATE {$wpdb->postmeta} SET meta_value = meta_value - %f WHERE post_id = %d AND meta_key='_stock'",
1314
- $stock_quantity,
1315
- $product_id_with_stock
1316
- );
1317
- break;
1318
- default:
1319
- $sql = $wpdb->prepare(
1320
- "UPDATE {$wpdb->postmeta} SET meta_value = %f WHERE post_id = %d AND meta_key='_stock'",
1321
- $stock_quantity,
1322
- $product_id_with_stock
1323
- );
1324
- break;
1325
  }
1326
 
1327
- $sql = apply_filters( 'woocommerce_update_product_stock_query', $sql, $product_id_with_stock, $stock_quantity, $operation );
 
 
 
 
 
1328
 
1329
- // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.PreparedSQL.NotPrepared
1330
- $wpdb->query( $sql );
1331
 
 
 
 
 
1332
  wp_cache_delete( $product_id_with_stock, 'post_meta' );
1333
 
1334
  $this->update_lookup_table( $product_id_with_stock, 'wc_product_meta_lookup' );
@@ -1340,6 +1395,8 @@ class WC_Product_Data_Store_CPT extends WC_Data_Store_WP implements WC_Object_Da
1340
  * @param int $product_id_with_stock Product ID that was updated directly.
1341
  */
1342
  do_action( 'woocommerce_updated_product_stock', $product_id_with_stock );
 
 
1343
  }
1344
 
1345
  /**
363
  $product->set_props( $set_props );
364
  }
365
 
366
+ /**
367
+ * Re-reads stock from the DB ignoring changes.
368
+ *
369
+ * @param WC_Product $product Product object.
370
+ * @param int|float $new_stock New stock level if already read.
371
+ */
372
+ public function read_stock_quantity( &$product, $new_stock = null ) {
373
+ $object_read = $product->get_object_read();
374
+ $product->set_object_read( false ); // This makes update of qty go directly to data- instead of changes-array of the product object (which is needed as the data should hold status of the object as it was read from the db).
375
+ $product->set_stock_quantity( is_null( $new_stock ) ? get_post_meta( $product->get_id(), '_stock', true ) : $new_stock );
376
+ $product->set_object_read( $object_read );
377
+ }
378
+
379
  /**
380
  * Read extra data associated with the product, like button text or product URL for external products.
381
  *
1298
  return $query;
1299
  }
1300
 
1301
+ /**
1302
+ * Update a product's stock amount directly in the database.
1303
+ *
1304
+ * Updates both post meta and lookup tables. Ignores manage stock setting on the product.
1305
+ *
1306
+ * @param int $product_id_with_stock Product ID.
1307
+ * @param int|float|null $stock_quantity Stock quantity.
1308
+ */
1309
+ protected function set_product_stock( $product_id_with_stock, $stock_quantity ) {
1310
+ global $wpdb;
1311
+
1312
+ // Generate SQL.
1313
+ $sql = $wpdb->prepare(
1314
+ "UPDATE {$wpdb->postmeta} SET meta_value = %f WHERE post_id = %d AND meta_key='_stock'",
1315
+ $stock_quantity,
1316
+ $product_id_with_stock
1317
+ );
1318
+
1319
+ $sql = apply_filters( 'woocommerce_update_product_stock_query', $sql, $product_id_with_stock, $stock_quantity, 'set' );
1320
+
1321
+ $wpdb->query( $sql ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.PreparedSQL.NotPrepared
1322
+
1323
+ // Cache delete is required (not only) to set correct data for lookup table (which reads from cache).
1324
+ // Sometimes I wonder if it shouldn't be part of update_lookup_table.
1325
+ wp_cache_delete( $product_id_with_stock, 'post_meta' );
1326
+
1327
+ $this->update_lookup_table( $product_id_with_stock, 'wc_product_meta_lookup' );
1328
+ }
1329
+
1330
  /**
1331
  * Update a product's stock amount directly.
1332
  *
1333
  * Uses queries rather than update_post_meta so we can do this in one query (to avoid stock issues).
1334
+ * Ignores manage stock setting on the product and sets quantities directly in the db: post meta and lookup tables.
1335
+ * Uses locking to update the quantity. If the lock is not acquired, change is lost.
1336
  *
1337
  * @since 3.0.0 this supports set, increase and decrease.
1338
+ * @param int $product_id_with_stock Product ID.
1339
+ * @param int|float|null $stock_quantity Stock quantity.
1340
+ * @param string $operation Set, increase and decrease.
1341
+ * @return int|float New stock level.
1342
  */
1343
  public function update_product_stock( $product_id_with_stock, $stock_quantity = null, $operation = 'set' ) {
1344
  global $wpdb;
1345
+
1346
+ // Ensures a row exists to update.
1347
  add_post_meta( $product_id_with_stock, '_stock', 0, true );
1348
 
1349
+ if ( 'set' === $operation ) {
1350
+ $new_stock = wc_stock_amount( $stock_quantity );
1351
+ } else {
1352
+ // @todo: potential race condition.
1353
+ // Read current stock level and lock the row. If the lock can't be acquired, don't wait.
1354
+ $current_stock = wc_stock_amount(
1355
+ $wpdb->get_var(
1356
+ $wpdb->prepare(
1357
+ "SELECT meta_value FROM {$wpdb->postmeta} WHERE post_id = %d AND meta_key='_stock';",
1358
+ $product_id_with_stock
1359
+ )
1360
+ )
1361
+ );
1362
+
1363
+ // Calculate new value.
1364
+ switch ( $operation ) {
1365
+ case 'increase':
1366
+ $new_stock = $current_stock + wc_stock_amount( $stock_quantity );
1367
+ break;
1368
+ default:
1369
+ $new_stock = $current_stock - wc_stock_amount( $stock_quantity );
1370
+ break;
1371
+ }
1372
  }
1373
 
1374
+ // Generate SQL.
1375
+ $sql = $wpdb->prepare(
1376
+ "UPDATE {$wpdb->postmeta} SET meta_value = %f WHERE post_id = %d AND meta_key='_stock'",
1377
+ $new_stock,
1378
+ $product_id_with_stock
1379
+ );
1380
 
1381
+ $sql = apply_filters( 'woocommerce_update_product_stock_query', $sql, $product_id_with_stock, $stock_quantity, 'set' );
 
1382
 
1383
+ $wpdb->query( $sql ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.PreparedSQL.NotPrepared
1384
+
1385
+ // Cache delete is required (not only) to set correct data for lookup table (which reads from cache).
1386
+ // Sometimes I wonder if it shouldn't be part of update_lookup_table.
1387
  wp_cache_delete( $product_id_with_stock, 'post_meta' );
1388
 
1389
  $this->update_lookup_table( $product_id_with_stock, 'wc_product_meta_lookup' );
1395
  * @param int $product_id_with_stock Product ID that was updated directly.
1396
  */
1397
  do_action( 'woocommerce_updated_product_stock', $product_id_with_stock );
1398
+
1399
+ return $new_stock;
1400
  }
1401
 
1402
  /**
includes/data-stores/class-wc-webhook-data-store.php CHANGED
@@ -370,13 +370,13 @@ class WC_Webhook_Data_Store implements WC_Webhook_Data_Store_Interface {
370
  */
371
  protected function get_webhook_count( $status = 'active' ) {
372
  global $wpdb;
373
-
374
- $count = wp_cache_get( $status . '_count', 'webhooks' );
375
 
376
  if ( false === $count ) {
377
  $count = absint( $wpdb->get_var( $wpdb->prepare( "SELECT count( webhook_id ) FROM {$wpdb->prefix}wc_webhooks WHERE `status` = %s;", $status ) ) );
378
 
379
- wp_cache_add( $status . '_count', $count, 'webhooks' );
380
  }
381
 
382
  return $count;
370
  */
371
  protected function get_webhook_count( $status = 'active' ) {
372
  global $wpdb;
373
+ $cache_key = WC_Cache_Helper::get_cache_prefix( 'webhooks' ) . $status . '_count';
374
+ $count = wp_cache_get( $cache_key, 'webhooks' );
375
 
376
  if ( false === $count ) {
377
  $count = absint( $wpdb->get_var( $wpdb->prepare( "SELECT count( webhook_id ) FROM {$wpdb->prefix}wc_webhooks WHERE `status` = %s;", $status ) ) );
378
 
379
+ wp_cache_add( $cache_key, $count, 'webhooks' );
380
  }
381
 
382
  return $count;
includes/gateways/paypal/class-wc-gateway-paypal.php CHANGED
@@ -70,8 +70,8 @@ class WC_Gateway_Paypal extends WC_Payment_Gateway {
70
 
71
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
72
  add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
73
- add_action( 'woocommerce_order_status_on-hold_to_processing', array( $this, 'capture_payment' ) );
74
- add_action( 'woocommerce_order_status_on-hold_to_completed', array( $this, 'capture_payment' ) );
75
 
76
  if ( ! $this->is_valid_for_use() ) {
77
  $this->enabled = 'no';
@@ -401,7 +401,7 @@ class WC_Gateway_Paypal extends WC_Payment_Gateway {
401
  public function capture_payment( $order_id ) {
402
  $order = wc_get_order( $order_id );
403
 
404
- if ( 'paypal' === $order->get_payment_method() && 'pending' === get_post_meta( $order->get_id(), '_paypal_status', true ) && $order->get_transaction_id() ) {
405
  $this->init_api();
406
  $result = WC_Gateway_Paypal_API_Handler::do_capture( $order );
407
 
70
 
71
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
72
  add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
73
+ add_action( 'woocommerce_order_status_processing', array( $this, 'capture_payment' ) );
74
+ add_action( 'woocommerce_order_status_completed', array( $this, 'capture_payment' ) );
75
 
76
  if ( ! $this->is_valid_for_use() ) {
77
  $this->enabled = 'no';
401
  public function capture_payment( $order_id ) {
402
  $order = wc_get_order( $order_id );
403
 
404
+ if ( 'paypal' === $order->get_payment_method() && 'pending' === $order->get_meta( '_paypal_status', true ) && $order->get_transaction_id() ) {
405
  $this->init_api();
406
  $result = WC_Gateway_Paypal_API_Handler::do_capture( $order );
407
 
includes/tracks/events/class-wc-admin-setup-wizard-tracking.php CHANGED
@@ -50,6 +50,7 @@ class WC_Admin_Setup_Wizard_Tracking {
50
  public function add_footer_scripts() {
51
  wp_print_scripts();
52
  WC_Site_Tracking::add_tracking_function();
 
53
  }
54
 
55
  /**
50
  public function add_footer_scripts() {
51
  wp_print_scripts();
52
  WC_Site_Tracking::add_tracking_function();
53
+ wc_print_js();
54
  }
55
 
56
  /**
includes/wc-core-functions.php CHANGED
@@ -157,7 +157,7 @@ function wc_update_order( $args ) {
157
  * @param string $name Template name (default: '').
158
  */
159
  function wc_get_template_part( $slug, $name = '' ) {
160
- $cache_key = sanitize_key( implode( '-', array( 'template-part', $slug, $name ) ) );
161
  $template = (string) wp_cache_get( $cache_key, 'woocommerce' );
162
 
163
  if ( ! $template ) {
@@ -205,7 +205,7 @@ function wc_get_template_part( $slug, $name = '' ) {
205
  * @param string $default_path Default path. (default: '').
206
  */
207
  function wc_get_template( $template_name, $args = array(), $template_path = '', $default_path = '' ) {
208
- $cache_key = sanitize_key( implode( '-', array( 'template', $template_name, $template_path, $default_path ) ) );
209
  $template = (string) wp_cache_get( $cache_key, 'woocommerce' );
210
 
211
  if ( ! $template ) {
157
  * @param string $name Template name (default: '').
158
  */
159
  function wc_get_template_part( $slug, $name = '' ) {
160
+ $cache_key = sanitize_key( implode( '-', array( 'template-part', $slug, $name, WC_VERSION ) ) );
161
  $template = (string) wp_cache_get( $cache_key, 'woocommerce' );
162
 
163
  if ( ! $template ) {
205
  * @param string $default_path Default path. (default: '').
206
  */
207
  function wc_get_template( $template_name, $args = array(), $template_path = '', $default_path = '' ) {
208
+ $cache_key = sanitize_key( implode( '-', array( 'template', $template_name, $template_path, $default_path, WC_VERSION ) ) );
209
  $template = (string) wp_cache_get( $cache_key, 'woocommerce' );
210
 
211
  if ( ! $template ) {
includes/wc-product-functions.php CHANGED
@@ -216,7 +216,11 @@ function wc_product_post_type_link( $permalink, $post ) {
216
  $ancestors = get_ancestors( $category_object->term_id, 'product_cat' );
217
  foreach ( $ancestors as $ancestor ) {
218
  $ancestor_object = get_term( $ancestor, 'product_cat' );
219
- $product_cat = $ancestor_object->slug . '/' . $product_cat;
 
 
 
 
220
  }
221
  }
222
  } else {
216
  $ancestors = get_ancestors( $category_object->term_id, 'product_cat' );
217
  foreach ( $ancestors as $ancestor ) {
218
  $ancestor_object = get_term( $ancestor, 'product_cat' );
219
+ if ( apply_filters( 'woocommerce_product_post_type_link_parent_category_only', false ) ) {
220
+ $product_cat = $ancestor_object->slug;
221
+ } else {
222
+ $product_cat = $ancestor_object->slug . '/' . $product_cat;
223
+ }
224
  }
225
  }
226
  } else {
includes/wc-stock-functions.php CHANGED
@@ -20,31 +20,37 @@ defined( 'ABSPATH' ) || exit;
20
  * @param int|WC_Product $product Product ID or product instance.
21
  * @param int|null $stock_quantity Stock quantity.
22
  * @param string $operation Type of opertion, allows 'set', 'increase' and 'decrease'.
23
- *
24
  * @return bool|int|null
25
  */
26
- function wc_update_product_stock( $product, $stock_quantity = null, $operation = 'set' ) {
27
- $product = wc_get_product( $product );
 
 
28
 
29
  if ( ! $product ) {
30
  return false;
31
  }
32
 
33
  if ( ! is_null( $stock_quantity ) && $product->managing_stock() ) {
34
- // Some products (variations) can have their stock managed by their parent. Get the correct ID to reduce here.
35
  $product_id_with_stock = $product->get_stock_managed_by_id();
 
36
  $data_store = WC_Data_Store::load( 'product' );
37
- $data_store->update_product_stock( $product_id_with_stock, $stock_quantity, $operation );
38
- delete_transient( 'wc_low_stock_count' );
39
- delete_transient( 'wc_outofstock_count' );
40
- delete_transient( 'wc_product_children_' . ( $product->is_type( 'variation' ) ? $product->get_parent_id() : $product->get_id() ) );
41
- wp_cache_delete( 'product-' . $product_id_with_stock, 'products' );
42
 
43
- // Re-read product data after updating stock, then have stock status calculated and saved.
44
- $product_with_stock = wc_get_product( $product_id_with_stock );
45
- $product_with_stock->set_stock_status();
46
- $product_with_stock->save();
 
 
 
 
 
 
 
47
 
 
48
  if ( $product_with_stock->is_type( 'variation' ) ) {
49
  do_action( 'woocommerce_variation_set_stock', $product_with_stock );
50
  } else {
20
  * @param int|WC_Product $product Product ID or product instance.
21
  * @param int|null $stock_quantity Stock quantity.
22
  * @param string $operation Type of opertion, allows 'set', 'increase' and 'decrease'.
23
+ * @param bool $updating If true, the product object won't be saved here as it will be updated later.
24
  * @return bool|int|null
25
  */
26
+ function wc_update_product_stock( $product, $stock_quantity = null, $operation = 'set', $updating = false ) {
27
+ if ( ! is_a( $product, 'WC_Product' ) ) {
28
+ $product = wc_get_product( $product );
29
+ }
30
 
31
  if ( ! $product ) {
32
  return false;
33
  }
34
 
35
  if ( ! is_null( $stock_quantity ) && $product->managing_stock() ) {
36
+ // Some products (variations) can have their stock managed by their parent. Get the correct object to be updated here.
37
  $product_id_with_stock = $product->get_stock_managed_by_id();
38
+ $product_with_stock = $product_id_with_stock !== $product->get_id() ? wc_get_product( $product_id_with_stock ) : $product;
39
  $data_store = WC_Data_Store::load( 'product' );
 
 
 
 
 
40
 
41
+ // Update the database.
42
+ $new_stock = $data_store->update_product_stock( $product_id_with_stock, $stock_quantity, $operation );
43
+
44
+ // Update the product object.
45
+ $data_store->read_stock_quantity( $product_with_stock, $new_stock );
46
+
47
+ // If this is not being called during an update routine, save the product so stock status etc is in sync, and caches are cleared.
48
+ if ( ! $updating ) {
49
+ $product_with_stock->set_stock_status();
50
+ $product_with_stock->save();
51
+ }
52
 
53
+ // Fire actions to let 3rd parties know the stock changed.
54
  if ( $product_with_stock->is_type( 'variation' ) ) {
55
  do_action( 'woocommerce_variation_set_stock', $product_with_stock );
56
  } else {
includes/wc-template-functions.php CHANGED
@@ -705,7 +705,7 @@ function wc_query_string_form_fields( $values = null, $exclude = array(), $curre
705
  $values = array();
706
 
707
  if ( ! empty( $url_parts['query'] ) ) {
708
- // This is to preserve full-stops and spaces in the query string when ran through parse_str.
709
  $replace_chars = array(
710
  '.' => '{dot}',
711
  '+' => '{plus}',
@@ -717,9 +717,11 @@ function wc_query_string_form_fields( $values = null, $exclude = array(), $curre
717
  // Parse the string.
718
  parse_str( $query_string, $parsed_query_string );
719
 
720
- // Convert the full-stops back and add to values array.
721
  foreach ( $parsed_query_string as $key => $value ) {
722
- $values[ str_replace( array_values( $replace_chars ), array_keys( $replace_chars ), $key ) ] = $value;
 
 
723
  }
724
  }
725
  }
705
  $values = array();
706
 
707
  if ( ! empty( $url_parts['query'] ) ) {
708
+ // This is to preserve full-stops, pluses and spaces in the query string when ran through parse_str.
709
  $replace_chars = array(
710
  '.' => '{dot}',
711
  '+' => '{plus}',
717
  // Parse the string.
718
  parse_str( $query_string, $parsed_query_string );
719
 
720
+ // Convert the full-stops, pluses and spaces back and add to values array.
721
  foreach ( $parsed_query_string as $key => $value ) {
722
+ $new_key = str_replace( array_values( $replace_chars ), array_keys( $replace_chars ), $key );
723
+ $new_value = str_replace( array_values( $replace_chars ), array_keys( $replace_chars ), $value );
724
+ $values[ $new_key ] = $new_value;
725
  }
726
  }
727
  }
includes/wc-term-functions.php CHANGED
@@ -23,7 +23,7 @@ function wc_change_get_terms_defaults( $defaults, $taxonomies ) {
23
  if ( is_array( $taxonomies ) && 1 < count( $taxonomies ) ) {
24
  return $defaults;
25
  }
26
- $taxonomy = is_array( $taxonomies ) ? $taxonomies[0] : $taxonomies;
27
  $orderby = 'name';
28
 
29
  if ( taxonomy_is_product_attribute( $taxonomy ) ) {
23
  if ( is_array( $taxonomies ) && 1 < count( $taxonomies ) ) {
24
  return $defaults;
25
  }
26
+ $taxonomy = is_array( $taxonomies ) ? (string) current( $taxonomies ) : $taxonomies;
27
  $orderby = 'name';
28
 
29
  if ( taxonomy_is_product_attribute( $taxonomy ) ) {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, mikejolley, jameskoster, claudiosanches, claudiulodro,
3
  Tags: ecommerce, e-commerce, store, sales, sell, shop, cart, checkout, downloadable, downloads, payments, paypal, storefront, stripe, woo commerce, woo
4
  Requires at least: 4.7
5
  Tested up to: 5.2
6
- Stable tag: 3.6.2
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -37,6 +37,16 @@ WooCommerce is built to allow store managers to run an eCommerce site themselves
37
 
38
  WooCommerce is developed and supported by Automattic, the creators of Jetpack and WordPress.com, along with independent contributors. The [official extension marketplace](https://woocommerce.com/product-category/woocommerce-extensions/?utm_source=wp%20org%20repo%20listing&utm_content=3.6) is on WooCommerce.com.
39
 
 
 
 
 
 
 
 
 
 
 
40
  = From subscriptions to gym classes to luxury cars =
41
  With WooCommerce, you can sell both physical and digital goods in all shapes and sizes, offer product variations, complex configurations, and instant downloads to shoppers; and even sell affiliate goods from online marketplaces.
42
 
@@ -60,7 +70,7 @@ There are also extensions available to add [delivery and shipping options](https
60
 
61
  = Design your store with themes and blocks =
62
 
63
- WooCommerce store design starts with a theme of your choice. There are hundreds of free and paid themes available, including [Storefront](https://woocommerce.com/storefront/?utm_source=wp%20org%20repo%20listing&utm_content=3.6) by Automattic -- it's free to all stores and you can choose to have it installed for you during the hguided setup.
64
 
65
  Storefront offers deep WooCommerce integration and prioritizes speed and uptime. You can add your brand and define your style by customizing Storefront yourself or adding one of several industry-themed [Storefront child themes](https://woocommerce.com/product-category/themes/storefront-child-theme-themes/?utm_source=wp%20org%20repo%20listing&utm_content=3.6).
66
 
@@ -104,7 +114,7 @@ There are 80+ [WooCommerce Meetups](https://woocommerce.com/woocommerce/meetups/
104
 
105
  If you’re interested in contributing to WooCommerce we’ve got more than 350 contributors, and there’s always room for more. Head to the [WooCommerce GitHub Repository](https://github.com/woocommerce/woocommerce?utm_source=wp%20org%20repo%20listing&utm_content=3.6) to find out how you can pitch in.
106
 
107
- WooCommerce is currently 100% translated into 24 languages, including Danish, Ukranian, and Persian. If you’re interested in helping to localize WooCommerce by adding your local language, visit [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/woocommerce?utm_source=wp%20org%20repo%20listing&utm_content=3.6).
108
 
109
  == Frequently Asked Questions ==
110
 
@@ -153,8 +163,8 @@ Visit the [WooCommerce server requirements documentation](https://docs.woocommer
153
  = Automatic installation =
154
 
155
  Automatic installation is the easiest option -- WordPress will handles the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”
156
-
157
- In the search field type “WooCommerce,” then click “Search Plugins.” Once you’ve found us, you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Clicki “Install Now,” and WordPress will take it from there.
158
 
159
  = Manual installation =
160
 
@@ -178,6 +188,40 @@ INTERESTED IN DEVELOPMENT?
178
 
179
  == Changelog ==
180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  = 3.6.2 - 2019-04-24 =
182
  * Fix - [3.6.x] Fix CSS classname conflict with themes due to missing product object global. #23377
183
  * Fix - [3.6.x] Fix security check on email template preview page. #23356
3
  Tags: ecommerce, e-commerce, store, sales, sell, shop, cart, checkout, downloadable, downloads, payments, paypal, storefront, stripe, woo commerce, woo
4
  Requires at least: 4.7
5
  Tested up to: 5.2
6
+ Stable tag: 3.6.3
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
37
 
38
  WooCommerce is developed and supported by Automattic, the creators of Jetpack and WordPress.com, along with independent contributors. The [official extension marketplace](https://woocommerce.com/product-category/woocommerce-extensions/?utm_source=wp%20org%20repo%20listing&utm_content=3.6) is on WooCommerce.com.
39
 
40
+ = Screenshots =
41
+
42
+ - WC-Admin to show off new central dashboard
43
+ - WooCommerce products admin.
44
+ - Product data panel.
45
+ - (New) WooCommerce sales reports.
46
+ - A single product page.
47
+ - A product archive (grid).
48
+ - Blocks in action
49
+
50
  = From subscriptions to gym classes to luxury cars =
51
  With WooCommerce, you can sell both physical and digital goods in all shapes and sizes, offer product variations, complex configurations, and instant downloads to shoppers; and even sell affiliate goods from online marketplaces.
52
 
70
 
71
  = Design your store with themes and blocks =
72
 
73
+ WooCommerce store design starts with a theme of your choice. There are hundreds of free and paid themes available, including [Storefront](https://woocommerce.com/storefront/?utm_source=wp%20org%20repo%20listing&utm_content=3.6) by Automattic -- it's free to all stores and you can choose to have it installed for you during the guided setup.
74
 
75
  Storefront offers deep WooCommerce integration and prioritizes speed and uptime. You can add your brand and define your style by customizing Storefront yourself or adding one of several industry-themed [Storefront child themes](https://woocommerce.com/product-category/themes/storefront-child-theme-themes/?utm_source=wp%20org%20repo%20listing&utm_content=3.6).
76
 
114
 
115
  If you’re interested in contributing to WooCommerce we’ve got more than 350 contributors, and there’s always room for more. Head to the [WooCommerce GitHub Repository](https://github.com/woocommerce/woocommerce?utm_source=wp%20org%20repo%20listing&utm_content=3.6) to find out how you can pitch in.
116
 
117
+ WooCommerce is currently 100% translated into 24 languages, including Danish, Ukrainian, and Persian. If you’re interested in helping to localize WooCommerce by adding your local language, visit [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/woocommerce?utm_source=wp%20org%20repo%20listing&utm_content=3.6).
118
 
119
  == Frequently Asked Questions ==
120
 
163
  = Automatic installation =
164
 
165
  Automatic installation is the easiest option -- WordPress will handles the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”
166
+
167
+ In the search field type “WooCommerce,” then click “Search Plugins.” Once you’ve found us, you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Click “Install Now,” and WordPress will take it from there.
168
 
169
  = Manual installation =
170
 
188
 
189
  == Changelog ==
190
 
191
+ = 3.6.3 - 2019-05-16 =
192
+ * Fix - State not required for Serbia. #23430
193
+ * Fix - # symbol in product category name broke product export. #23454
194
+ * Fix - XML export caused fatal errors due to Action Scheduler adding invalid characters. #23456
195
+ * Fix - Invalid password messages when password contains backslashes. #23499
196
+ * Fix - Dismiss button in WC admin notices "legacy_shipping" and "no_shipping_methods" were not clickable. #23517
197
+ * Fix - WC $wpdb->tables not defined early enough. #23529
198
+ * Fix - Tracks JS not printed on last page of OBW. #23519
199
+ * Fix - Error in the logic used to build fields for external products when the query string contained full-stops, pluses or spaces in the values of the parameters. #23535
200
+ * Fix - UI page width issue on OBW. #23526
201
+ * Fix - Customer address not auto populated on checkout after registering and filling in address prior. #23528
202
+ * Fix - Available WooCommerce extension updates not showing in System Status report. #23601
203
+ * Fix - wc_change_get_terms_defaults throwing undefined index notices. #23611
204
+ * Fix - System Status report alway showing checkmark next to Connected to WooCommerce.com. #23617
205
+ * Fix - State field never populated when loading customer address on order via wp-admin. #23615
206
+ * Fix - Order sorting not working in wp-admin when Yoast SEO active. #23590
207
+ * Fix - Attribute ordering not working in product edit screen. #23625
208
+ * Fix - Tracks reporting incorrect order totals due to refunds being excluded in calculation. #23671
209
+ * Fix - Reload state options when creating a new order in WP-Admin and changing country. #23602
210
+ * Fix - New webhooks not showing in the webhook admin list page when you have object caching enabled. #23713
211
+ * Fix - Missing coupon expiry dates, restore coupons expiry_date backward compatibility. #23714
212
+ * Fix - Bulk stock update could result in all products set to out of stock, change ensures consistency between db and Product instance in memory. #23534
213
+ * Fix - Dashboard stats widget including unpublished products in out of stock and low in stock counts. #23734
214
+ * Fix - PayPal payment not captured when you transition an order from a custom order status to completed or processing. #23634
215
+ * Tweak - Confirm before saving empty list of countries to sell to in settings. #23597
216
+ * Tweak - Change default WC API version used when creating webhooks to the latest WC API version. #23515
217
+ * Tweak - Report a bug button now points to the new issue template in GitHub. #23580
218
+ * Tweak - Do not display taxes in totals columns when taxes not enabled. #23579
219
+ * Tweak - WC WP-CLI upgrade routine mimics wp-admin upgrade when no updates found by setting DB version to current version. #23666
220
+ * Tweak - Template caching now cache based on WC_VERSION to avoid issues with symlinked plugin folders. #23546
221
+ * Tweak - OBW payment gateway selection defaults. #23690
222
+ * Localization - Add Serbia locale defaults. #23428
223
+ * Localization - Add address format for Serbia. #23429
224
+
225
  = 3.6.2 - 2019-04-24 =
226
  * Fix - [3.6.x] Fix CSS classname conflict with themes due to missing product object global. #23377
227
  * Fix - [3.6.x] Fix security check on email template preview page. #23356
woocommerce.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce
4
  * Plugin URI: https://woocommerce.com/
5
  * Description: An eCommerce toolkit that helps you sell anything. Beautifully.
6
- * Version: 3.6.2
7
  * Author: Automattic
8
  * Author URI: https://woocommerce.com
9
  * Text Domain: woocommerce
3
  * Plugin Name: WooCommerce
4
  * Plugin URI: https://woocommerce.com/
5
  * Description: An eCommerce toolkit that helps you sell anything. Beautifully.
6
+ * Version: 3.6.3
7
  * Author: Automattic
8
  * Author URI: https://woocommerce.com
9
  * Text Domain: woocommerce