Hello
I purchased GeneratePress today but the Customizer was not working. The cause is in class_typography_control.php
, both in the theme (inc/customizer/controls/class-typography-control.php:72
) and the premium plugins (library/customizer/controls/class-typography-control.php:64
). The problem is that data.default_fonts
seems an array, though it is being traversed as an objet, not sure why. In any case, the minimum modification that keeps the array being traversed as an object and fixes the customizer is adding the following line after the for
in both files: <# if (!data.default_fonts.hasOwnProperty(key)) { continue; } #>