I've installed and enabled the TBSirate and Nucleus themes, and now when I want to save the theme settings, I get the error. By default I had page width 980 px, and I wanted to change it to 960 px with default grid 12 columns. The error:

Fatal error: Call to undefined function nucleus_form_variable_realm_variable_theme_form_submit() in /home/mysite/public_html/includes/form.inc on line 1464

I have Drupal 7.21.
Could you please, help me with this error?
Thank you,
Serhiy

Comments

gori4ka’s picture

Hello,

same with me. I am trying for hours to make the theme display the site name.

After scrolling through all css files I found out that it was disabled in tb_sirate.info

I changed:
settings[toggle_name] = 0
to
settings[toggle_name] = 1
And still: when I go to theme settings Global and click on Site name & Save, nothing happens. Next time I open it, it is still unckecked.
I tried to add above code to nucleus.info and then I got the error from the post above (exactly same wording).

If you have any ideas how I can turn on site name, please help.

Best, gori4ka

GANYANCI’s picture

You can fixed with this.
Open form.inc.
(siteroot/includes/form.inc)

Find this:

else {
      $function($form, $form_state);
}

change it with this:

else {
if ($function != 'nucleus_form_variable_realm_variable_theme_form_submit')
   $function($form, $form_state);
}
anssary’s picture

#2 worked for me with (tb_rave)
thanks GANYACI