4

After upgrading to 2.1.0 my checkout page looks like this enter image description here

In console there is an error

 TypeError: window.checkout is undefined

enter image description here

I tryed what was suggested here Magento 2 (CE) not displaying the Checkout page but it did not help

Anna
  • 1,645
  • 2
  • 24
  • 47

1 Answers1

3

this solution works for me:

In vendor\magento\framework\Locale\Format.php comment out line 112 and add

//$defaultSet = $localeData['NumberElements']['default'] ?:     self::$defaultNumberSet;
  $defaultSet = self::$defaultNumberSet;
Anna
  • 1,645
  • 2
  • 24
  • 47