| @@ -77,9 +77,9 @@ | ||
| 77 | 77 | $enumDefaults = [ |
| 78 | 78 | 'tax_inclusion' => ['included', 'excluded'], |
| 79 | 79 | 'tax_calculation_basis' => ['shipping', 'billing', 'store'], |
| 80 | 80 | 'tax_rounding' => ['item', 'total', 'subtotal'], |
| 81 | - 'checkout_tax_breakdown_display' => ['both', 'label', 'tooltip'], | |
| 81 | + 'checkout_tax_breakdown_display' => ['itemized', 'simplified'], | |
| 82 | 82 | 'enable_tax' => ['yes', 'no'], |
| 83 | 83 | ]; |
| 84 | 84 | foreach ($enumDefaults as $key => $allowed) { |
| 85 | 85 | if (isset($settings[$key]) && !in_array($settings[$key], $allowed, true)) { |
| @@ -119,9 +119,10 @@ | ||
| 119 | 119 | return [ |
| 120 | 120 | 'tax_inclusion' => 'included', |
| 121 | 121 | 'tax_calculation_basis' => 'shipping', |
| 122 | 122 | 'tax_rounding' => 'item', |
| 123 | - 'checkout_tax_breakdown_display' => 'both', | |
| 123 | + 'checkout_tax_breakdown_display' => 'itemized', | |
| 124 | + 'tax_display_label' => 'Tax', | |
| 124 | 125 | 'enable_tax' => 'no', |
| 125 | 126 | 'price_suffix_included' => '', |
| 126 | 127 | 'price_suffix_excluded' => '', |
| 127 | 128 | 'eu_vat_settings' => [ |