Please, look at the attached screenshot image. I cannot for sure say when and why this RESET at top of the screen appears but I think the mistake is somewhere here, in file arctica/arctica/features/arctica-layoutkit/layoutkit-theme-settings.inc line 162, there is question mark PHP if that outputs RESET under some conditions. On clean install it does appear.

TouchPro bug

Another strange thing is div at the end that contains cryptic code after Arctica attribution. I've changed style just to be visible so I can dump the screen. It is show three times in TouchPro as it is third level subtheme.

<div style="display:none">glqxz9283 sfy39587stf02 mnesdcuix8</div>

It is Arctica issue but appears

CommentFileSizeAuthor
TouchPro-bug.png94.44 KBMacMladen
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

7wonders’s picture

The RESET comes from the meta setting in .info file. It also happened to me. I deleted it and it dissapeared (as a temp fix while I get things up and running).

JurriaanRoelofs’s picture

Hi, can you download the latest dev of Arctica? That should fix this.

The RESET is a token that tell the theme settings controller to load a bunch of meta tags in this theme setting. It was a fix for this issue: http://drupal.org/node/1363424

@7wonders to ensure optimal mobile experience you should also update Arctica, then add RESET back in the textarea. Then when you save the RESET token should be replaced with meta tags.

JurriaanRoelofs’s picture

Assigned: Unassigned » JurriaanRoelofs
JurriaanRoelofs’s picture

Status: Active » Closed (fixed)
drewschmaltz’s picture

Status: Closed (fixed) » Needs work

I have the latest version of everything and still have the RESET appearing.

stGeorge-1’s picture

Yep me too, I have just installed fresh version and get the RESET problem.

hakim.ace’s picture

Solved for me :
change on arctica/arctica/features/arctica-layoutkit/layoutkit-theme-settings.inc :

$form['arctica_settings']['layout']['meta'] = array(
'#type' => 'textarea',
'#rows' => 3,
'#title' => t('UX Tweaks'),
'#default_value' => theme_get_setting("meta"). theme_get_setting("meta1") . theme_get_setting("meta2"). theme_get_setting("meta3") . theme_get_setting("meta4"). theme_get_setting("meta5").theme_get_setting("meta6"),
'#description' => t("Enter meta tags for improved browsing experience. These tags are loaded just after the title tag, before your other head contents."),
'#required' => FALSE,
);

and remove RESET in UX Tweaks at appearance/settings/touchpro .

JurriaanRoelofs’s picture

I think this problem is only occurring to people who have never saved the theme settings form. If you save the theme settings form some processing gets done to properly initialize the meta tags settings.
I've not figured out a way around this but I'm implementing a warning for users who haven't touched the theme settings form that they need to do this to initialize some settings.

JurriaanRoelofs’s picture

Status: Needs work » Fixed

Status: Fixed » Closed (fixed)

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