View Single Post
  #1  
Old 11-06-2012, 06:32 PM
tman47 tman47 is offline
Registered User
Pro Plus Member
 
Join Date: Oct 2009
Posts: 21
Default Classic Themes Admin Save Settings Fix for Wordpress 3.4.x

This is a fix for StudioPress Classic Themes (not Genesis Child Themes) where by the Theme Options Admin Settings do not save after you upgraded Wordpress.

It is easy and worked for me with both the Education 10 and Streamline 30 themes

In the theme-options.php file (under Appearance/editor in your WP admin area) simple replace the:

$settings = 'mods_'.get_current_theme(); // do not change!

With:

$settings = 'theme_mods_streamline_30'; // do not change!

The important part is to use the name of the folder the theme is in on your server - in this case it is "streamline_30" other themes might be "lifestyle_40" or "education_10" and so on

The fix below noted elsewhere in this forum does not work on the latest version of wordpress

$settings = 'theme_mods_'.get_current_theme(); // do not change!

Hope this helps a few and prevents them from having to scrap an established design and theme already installed a long time ago!

Cheers!