<div dir="ltr">On Fri, Nov 8, 2013 at 10:16 AM, Fruitfulcode <<a href="mailto:fruitfulcode@gmail.com">fruitfulcode@gmail.com</a>> wrote:<br>> Maybe it possible delete first version and upload latest to <a href="http://wp-themes.com/fruitful/">http://wp-themes.com/fruitful/</a> ?<br>

<br>No, I'm not going to futz around with the previewer because of a problem with your theme. If you want to me remove the theme from the listings entirely, then I'm willing to do that, but the bottom line is that the theme is broken and you need to fix it.<br>

<br><br>> On fresh wordpress install, current theme version 1.0.7 can be activated correctly, without any problems.<br><br>Only because you're doing it wrong. Soon, when we lock down the previewer, your theme will be entirely broken. This is because you're doing-it-wrong.<br>

<br>Over here in this file for example:<br><a href="http://themes.svn.wordpress.org/fruitful/1.0.7/inc/theme-options/theme-options.php">http://themes.svn.wordpress.org/fruitful/1.0.7/inc/theme-options/theme-options.php</a><br>

<br>You have this code:<br>add_action( 'admin_init', 'fruitful_theme_options_init' );<br><br>If you examine that function you have this code:<br>if( !get_option( 'fruitful_theme_options' ) ) {<br>
  add_option( 'fruitful_theme_options', fruitful_get_theme_options());<br>
}<br><br>This is entirely the wrong way to do defaults. The previewer system will eventually silently fail all "add_option" calls because the database will be entirely read-only. What will happen to your theme then?<br>

<br>Your theme needs to be able to work properly without being capable of writing *anything* to the database. That's what "defaults" mean. It's the settings you use *by default*.<br><br>Fundamentally, you probably need to rework most of your settings handling, but here's one possible quick fix for you:<br>

<br>function fruitful_get_responsive_style () {<br>  $theme_options  = fruitful_ret_options("fruitful_theme_options");<br>  if (isset($theme_options['responsive']) && $theme_options['responsive'] == 'on' ) {<br>

    wp_enqueue_style('main-style',  get_stylesheet_uri());<br>  } else {<br>    wp_enqueue_style('main-style',  get_stylesheet_directory_uri()<br>.'/fixed-style.css');<br>  }<br>}<br>add_action('wp_enqueue_scripts', 'fruitful_get_responsive_style', 20);<br>

<br>You can see that I'm checking for both the setting being available and turned "on" to enqueue the style.css, and for *all other cases*, I enqueue the fixed-style.css. This means that at least one will always be enqueued. The "default" case is to enqueue the fixed-style.css. <div>

<br>-Otto<br><div><br></div></div><div><br></div></div>