On a fresh and empty drupal 8.0.0-beta16 site I installed AT Core. Created theme with AT Theme Generator. Activated new theme. The frontend has new layout.
Tried to go to child theme settings. Didn't work. Error message "The website encountered an unexpected error. Please try again later."

Do I miss something? I don't find any help tap nor information text in the files.

Comments

krabbe created an issue. See original summary.

kiwad’s picture

I'm not sure if it is the same issue...

I do have a WSOD on the subtheme settings when my site is configured to be in french. If I switch configuration to english, I do have access to subtheme settings

kiwad’s picture

Well, Don't ask me why, that was trial and error, but if I remove

'#default_value' => theme_get_setting('settings.enable_shortcodes', $theme),

in forms/ext/extension_settings.php

WSOD goes away...

krabbe’s picture

I can confirm, switching language to english makes child-theme settings accessible. I installed the theme while the site was in german.
Removing the shortcode default value settings makes the settings side accessible also in german.

Jeff Burnz’s picture

Assigned: Unassigned » Jeff Burnz
Priority: Normal » Major

OK, I'm on it.

Jeff Burnz’s picture

Title: Can't reach sub theme settings » Can't reach sub theme settings - use method to get untranslated string
Status: Active » Fixed

Problem here is the region name is now a protected string and no longer automagically rendered, I have used the getUntranslatedString() method instead.

-    '#title' => t($region_value),
+    '#title' => t($region_value->getUntranslatedString()),

Thank-you very much for reporting this issue as I have not tested very much with other languages so this is good alert for me to start doing this now we are in Drupal 8 RC1.

This should now be fixed in HEAD.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

ledjerdemain’s picture

I'm still getting this issue with both with 8.x-1.0 and 8.x-1.x-dev. But I don't know in which to try the change suggested in #3 and #6.

Cheers in advance.