StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
  #1  
Old 02-24-2011, 02:44 AM
acro acro is offline
Registered User
Genesis Member
 
Join Date: Sep 2009
Posts: 28
Exclamation Theme Options Uneditable After Upgrade to WP 3.1 (for Non-Genesis Themes)

Hello - after upgrading to WP 3.1 the Theme options do not update when changed!

I can view all options and their settings as usual but when altering any of the Magazine Theme Options under Appearance, hitting submit renders no changes whatsoever.

Please help.

Last edited by CharlesClarkson; 02-27-2012 at 11:54 PM. Reason: Added " (for Non-Genesis Themes)" to title.
  #2  
Old 02-24-2011, 05:35 AM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Question

Have you disabled all plugins to rule out a plugin conflict?

Examine message 22 for the fix. Send your thanks to turkeybucket for the solution.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.

Last edited by CharlesClarkson; 04-24-2011 at 05:22 PM.
  #3  
Old 02-24-2011, 06:11 AM
acro acro is offline
Registered User
Genesis Member
 
Join Date: Sep 2009
Posts: 28
Default

Quote:
Originally Posted by CharlesClarkson View Post
Have you disabled all plugins to rule out a plugin conflict?
hi Charles - I just did and the test is negative. In fact, I can e.g. enable other themes and tweak their settings. The problem is with Magazine 1.0 and its settings panel.

Everything worked fine until WP 3.05 and when I tried to alter the Tabber content order it did not work, thus making me realize that none of the Magazine 1.0 settings can now be altered, they are retaining their current status.
  #4  
Old 02-24-2011, 07:09 AM
turkeybucket turkeybucket is offline
Registered User
Pro Plus Member
 
Join Date: May 2009
Posts: 4
Default Theme Options not updating

I'm having the same problem with the Executive theme -- the Theme Options won't save now that I've upgraded to 3.1.

I've deactivated all plugins, so I know there isn't a plugin conflict.
  #5  
Old 02-24-2011, 07:14 AM
acro acro is offline
Registered User
Genesis Member
 
Join Date: Sep 2009
Posts: 28
Default

Turkeybucket, sorry to hear that. At least I know now I am not doing something wrong :-)

Have you renamed the administrator account by any chance? I'm trying to figure if it's some odd permissions issue.
  #6  
Old 02-24-2011, 07:23 AM
turkeybucket turkeybucket is offline
Registered User
Pro Plus Member
 
Join Date: May 2009
Posts: 4
Default

I haven't changed anything with my administrator account.
  #7  
Old 02-24-2011, 05:51 PM
mbeduya mbeduya is offline
Registered User
Genesis Member
 
Join Date: May 2010
Location: Manila
Posts: 8
Default

Quote:
Originally Posted by CharlesClarkson View Post
Have you disabled all plugins to rule out a plugin conflict?
Hi Charles,
Thanks. Before I emailed, I only deactivated W3 Total Cache to eliminate one of two possible sources. The same freezing persisted. Now, I will deactivate the top three ones I activated latest to test your suggestion.
  #8  
Old 02-24-2011, 06:39 PM
mbeduya mbeduya is offline
Registered User
Genesis Member
 
Join Date: May 2010
Location: Manila
Posts: 8
Default

Hi Charles,
I have deactivated plug-ins as you suggested. And the freezing of the Magazine Theme Options persists. Please provide more troubleshoot options. Thanks.
  #9  
Old 02-24-2011, 06:52 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by mbeduya View Post
Please provide more troubleshoot options.
I will gladly provide them as they become available. So far, I have no more options. Have you tried turkeybucket's fix(es)?
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #10  
Old 02-25-2011, 03:25 AM
mbeduya mbeduya is offline
Registered User
Genesis Member
 
Join Date: May 2010
Location: Manila
Posts: 8
Default

Hi Charles,
It worked. As you suggested, I did try turkeybucket's suggestion as implemented by Acro for Magazine_10. Thanks a lot for quick help.
  #11  
Old 02-24-2011, 06:40 PM
turkeybucket turkeybucket is offline
Registered User
Pro Plus Member
 
Join Date: May 2009
Posts: 4
Default Potential Fix

Try changing this line in the Theme Options file from

PHP Code:
$settings 'theme_mods_'.get_current_theme(); // do not change! 
to

PHP Code:
$settings 'theme_mods_church'// do not change! 
Be sure to use a lowercase version of your actual theme name.

Last edited by CharlesClarkson; 04-08-2011 at 11:06 AM. Reason: Missing Semicolon. Props Fermat.
  #12  
Old 02-25-2011, 01:13 AM
acro acro is offline
Registered User
Genesis Member
 
Join Date: Sep 2009
Posts: 28
Default

Quote:
Originally Posted by turkeybucket View Post
Try changing this line in the Theme Options file from

PHP Code:
$settings 'theme_mods_'.get_current_theme(); // do not change! 
to

PHP Code:
$settings 'theme_mods_church' // do not change! 
Be sure to use a lowercase version of your actual theme name.
I can now confirm that this *IS* the solution.

E.g. for my Magazine 1.0 theme I used the name of the theme folder, "magazine_10" and the line

PHP Code:
$settings 'mods_'.get_current_theme(); // do not change! 
was changed to

PHP Code:
$settings 'theme_mods_magazine_10'// do not change! 
Many thanks to turkeybucket!!
  #13  
Old 02-25-2011, 01:30 AM
Aboundz Aboundz is offline
Registered User
Pro Plus Member
 
Join Date: Feb 2009
Location: Australia
Posts: 39
Thumbs up

I confirm a perfect fix too! Thank you!
  #14  
Old 03-10-2011, 05:48 AM
valerika valerika is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 16
Default

Yes this is the solution. It works for me too under magazine theme 1.0

Quote:
E.g. for my Magazine 1.0 theme I used the name of the theme folder, "magazine_10" and the line

PHP Code:
$settings 'mods_'.get_current_theme(); // do not change! 
was changed to

PHP Code:
$settings 'theme_mods_magazine_10'// do not change! 
Many thanks to turkeybucket!!
Many thanks to turkeybucket!!
  #15  
Old 04-18-2011, 10:43 PM
Rustyn Rustyn is offline
Registered User
Genesis Member
 
Join Date: Jul 2009
Location: Idaho
Posts: 19
Default

Quote:
Originally Posted by acro View Post
I can now confirm that this *IS* the solution.

E.g. for my Magazine 1.0 theme I used the name of the theme folder, "magazine_10" and the line

PHP Code:
$settings 'mods_'.get_current_theme(); // do not change! 
was changed to

PHP Code:
$settings 'theme_mods_magazine_10'// do not change! 
Many thanks to turkeybucket!!
I'm glad it's working for all of you, but that fix did NOT work on my church theme. Could it be that it's because mine is the church revolution theme?
  #16  
Old 02-27-2011, 03:39 PM
simo80 simo80 is offline
Registered User
Genesis Member
 
Join Date: Nov 2009
Posts: 44
Default

Quote:
Originally Posted by turkeybucket View Post
Try changing this line in the Theme Options file from

PHP Code:
$settings 'theme_mods_'.get_current_theme(); // do not change! 
to

PHP Code:
$settings 'theme_mods_church' // do not change! 
Be sure to use a lowercase version of your actual theme name.
I file in the "theme options" I only have this string:
Code:
$settings = 'mods_'.get_current_theme(); // do not change!
If I try to change with this:
Code:
$settings = 'theme_mods_church' // do not change!
I get the blank page.
How can I fix this?
__________________
Free Sample 4 You
  #17  
Old 02-27-2011, 03:45 PM
simo80 simo80 is offline
Registered User
Genesis Member
 
Join Date: Nov 2009
Posts: 44
Default

Quote:
Originally Posted by acro View Post
I can now confirm that this *IS* the solution.

E.g. for my Magazine 1.0 theme I used the name of the theme folder, "magazine_10" and the line

PHP Code:
$settings 'mods_'.get_current_theme(); // do not change! 
was changed to

PHP Code:
$settings 'theme_mods_magazine_10'// do not change! 
Many thanks to turkeybucket!!
Quote:
Originally Posted by vegasb2k View Post
In my Church theme I switched:

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

Code:
$settings = 'theme_mods_church_40'; // do not change!
And can say that all is well again!

(Just be sure to keep the " ; " at the end or errors pop up. )

THANK YOU ALL!!
With neither of them works. My theme is Lifestyle theme 4.0
__________________
Free Sample 4 You
  #18  
Old 02-27-2011, 09:04 PM
Segoweb Segoweb is offline
Registered User
Genesis Member
 
Join Date: Jan 2010
Posts: 4
Default

Very thanks
  #19  
Old 11-24-2011, 10:01 AM
MrMagazine MrMagazine is offline
Registered User
Genesis Member
 
Join Date: Nov 2009
Posts: 10
Default

turkeybucket RULES!!!!!!!!!

THANK YOU SO MUCH FOR THE HELP!

I was just about to go insane ...



Quote:
Originally Posted by turkeybucket View Post
Try changing this line in the Theme Options file from

PHP Code:
$settings 'theme_mods_'.get_current_theme(); // do not change! 
to

PHP Code:
$settings 'theme_mods_church'// do not change! 
Be sure to use a lowercase version of your actual theme name.
__________________
Newbie - Trying to create and at the same time learn. Thank you to all who take the time to help us who are less gifted in the brainy/coding department :O)
  #20  
Old 02-14-2012, 02:00 PM
evdv evdv is offline
Registered User
Pro Plus Member
 
Join Date: Feb 2012
Posts: 28
Default

can you tell me how to get to the "line in the Theme Options file from"
  #21  
Old 02-14-2012, 04:45 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by evdv View Post
can you tell me how to get to the "line in the Theme Options file from"
In a plain text editor, edit the file named theme-options.php in the tools folder of the theme folder.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #22  
Old 05-18-2012, 10:52 AM
hpfd413 hpfd413 is offline
Registered User
Genesis Member
 
Join Date: Mar 2010
Posts: 60
Default

did nothing for me. still have same problem
  #23  
Old 05-18-2012, 07:38 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Question

Quote:
Originally Posted by hpfd413 View Post
did nothing for me. still have same problem
What is your web site url?
What specific change did you make to the theme files?
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.

Last edited by CharlesClarkson; 05-18-2012 at 07:45 PM.
  #24  
Old 02-24-2011, 05:47 AM
mbeduya mbeduya is offline
Registered User
Genesis Member
 
Join Date: May 2010
Location: Manila
Posts: 8
Default Frozen Magazine Theme Options after WP3.1 and W3 Total Cache

Hi, The Magazine Theme Options refuses to accept a reset that I needed to do to put a new post in the Homepage Main placeholder. I am not sure though if this was a WP3.1 or a W3 Total Cache issue. I am not knowledgeable in programming though I am OK at problem-solving. Incidentally, the Theme accepted the post but in another, low rank placeholder. My website: http://synthesistblog.com/. Would really appreciate any help, even options to look at. Thanks.

Moderator Note: This post was merged into this thread.

Last edited by CharlesClarkson; 02-24-2011 at 07:53 AM. Reason: Made link clickable. Please preview your posts. Merged threads.
  #25  
Old 03-19-2011, 10:00 AM
ssalison ssalison is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 3
Default

Hi,

I tried the solution in Message 22 but it screws up everything
  #26  
Old 03-19-2011, 10:43 AM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by ssalison View Post
I tried the solution in Message 22 but it screws up everything
Pretend we have no idea what you mean by "it screws up everything" and tell us precisely what happens.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #27  
Old 03-19-2011, 11:50 AM
ssalison ssalison is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 3
Default

I got a "Parse error: syntax error, unexpected T_VARIABLE in /home" etc message and my blog literally disappeared.

I had to FTP the theme_options.php file from my original theme download to recover my blog.
  #28  
Old 03-28-2011, 04:35 PM
Todays Family Todays Family is offline
Registered User
Genesis Member
 
Join Date: Feb 2010
Posts: 18
Default done item 22

Hi I just did the suggestion in item 22 and it did not work for me. My theme is lifestyle which is what i put in. but should i have put in lifestyle_4.0
  #29  
Old 03-28-2011, 05:05 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by Todays Family View Post
Hi I just did the suggestion in item 22 and it did not work for me. My theme is lifestyle which is what i put in. but should i have put in lifestyle_4.0
Then your path is probably "lifestyle_40". You can see your path by examining the browser page source.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #30  
Old 05-04-2011, 08:10 PM
TwoDegrees TwoDegrees is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 33
Default

Sh*t .... Tried what you suggested ...


PHP Code:
PHP Code:
$settings 'mods_'.get_current_theme(); // do not change! 
was changed to

PHP Code:
PHP Code:
$settings 'theme_mods_magazine_10'// do not change! 
And get the following ...

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /nfs/c06/h01/mnt/87278/domains/legalminds.tv/html/wp-content/themes/magazine_10/tools/theme-options.php on line 9

NOW MY SITE IS NOT WORKING AT ALL.

Last edited by CharlesClarkson; 05-04-2011 at 08:32 PM. Reason: Moved post. Added PHP tags to PHP code.
  #31  
Old 05-04-2011, 08:34 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Question

Quote:
Originally Posted by TwoDegrees View Post
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /nfs/c06/h01/mnt/87278/domains/legalminds.tv/html/wp-content/themes/magazine_10/tools/theme-options.php on line 9
What is on lines 8, 9 ans 10 of this file?
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #32  
Old 05-04-2011, 08:40 PM
TwoDegrees TwoDegrees is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 33
Default

Replaced with original file via FTP to get site back up and working. Where would I find the info you asked?
  #33  
Old 05-04-2011, 08:44 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by TwoDegrees View Post
Where would I find the info you asked?
The error messages said the problem was on line 9. Count the first 10 lines in the nfs/c06/h01/mnt/87278/domains/legalminds.tv/html/wp-content/themes/magazine_10/tools/theme-options.php file and paste the last 3 in a reply message. Those would be lines 8, 9 and 10 of that file.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #34  
Old 05-04-2011, 08:45 PM
TwoDegrees TwoDegrees is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 33
Default File

Attached is the php file -- without the changed settings line.
Attached Files
File Type: txt TwoDegrees.txt (17.1 KB, 8 views)
  #35  
Old 05-04-2011, 08:53 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by TwoDegrees View Post
Attached is the php file -- without the changed settings line.
Please do not attach code files. Paste your code in PHP code tags.

Your file starts with:
PHP Code:
{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350
{\fonttbl\f0\froman\fcharset0 Times-Roman;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww9000\viewh8400\viewkind0
\deftab720
\pard\pardeftab720\ql\qnatural

\f0\fs24 \cf0 <?php
Which is not a PHP file from this theme. Your file also ends each line with \. Something has gone terribly wrong on your end.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #36  
Old 05-04-2011, 08:57 PM
TwoDegrees TwoDegrees is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 33
Default

I think it's because I probably saved an RTF file with the code in it. Let me try again using your recommendation.
  #37  
Old 05-04-2011, 08:59 PM
TwoDegrees TwoDegrees is offline
Registered User
Genesis Member
 
Join Date: Oct 2009
Posts: 33
Default PHP File

PHP Code:
<?php
/*
Plugin Name: Theme Options
Author: Nathan Rice
Author URI: http://www.nathanrice.net/

NOTE: this file requires WordPress 2.7+ to function
*/
$settings 'mods_'.get_current_theme(); // do not change!

$defaults = array( // define our defaults
        
'header_blog_title' => 'Image',
        
'subnav' => 'Yes',
        
'tabber' => 'Yes',
        
'tabber_1' => 1,
        
'tabber_2' => 1,
        
'tabber_3' => 1,
        
'tabber_4' => 1,
        
'tabber_5' => 1,
        
'tabber_6' => 1,
        
'tabber_thumb_width' => 150,
        
'tabber_thumb_height' => 225,
        
'featured_main' => 1,
        
'featured_main_num' => 3,
        
'featured_main_thumb_width' => 115,
        
'featured_main_thumb_height' => 115,
        
'featured_top_left' => 1,
        
'featured_top_left_num' => 3,
        
'featured_top_left_thumb_width' => 75,
        
'featured_top_left_thumb_height' => 75,
        
'featured_top_right' => 1,
        
'featured_top_right_num' => 3,
        
'featured_top_right_thumb_width' => 75,
        
'featured_top_right_thumb_height' => 75,    
        
'enews' => 'Yes',
        
'blog_cat' => 1,
        
'blog_cat_num' => 5,
        
'vid_cat' => 1,
        
'vid_cat_num' => // <-- no comma after the last option
);

//    push the defaults to the options database,
//    if options don't yet exist there.
add_option($settings$defaults'''yes');

/*
///////////////////////////////////////////////
This section hooks the proper functions
to the proper actions in WordPress
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
*/
//    this function registers our settings in the db
add_action('admin_init''register_theme_settings');
function 
register_theme_settings() {
    global 
$settings;
    
register_setting($settings$settings);
}
//    this function adds the settings page to the Appearance tab
add_action('admin_menu''add_theme_options_menu');
function 
add_theme_options_menu() {
    
add_submenu_page('themes.php'__('Magazine Theme Options''studiopress'), __('Magazine Theme Options''studiopress'), 8'theme-options''theme_settings_admin');
}

/*
///////////////////////////////////////////////
This section handles all the admin page
output (forms, update notifications, etc.)
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
*/
function theme_settings_admin() { ?>
<?php theme_options_css_js
(); ?>
<div class="wrap">
<?php
    
// display the proper notification if Saved/Reset
    
global $settings$defaults;
    if(
get_theme_mod('reset')) {
        echo 
'<div class="updated fade" id="message"><p>'.__('Theme Options''studiopress').' <strong>'.__('RESET TO DEFAULTS''studiopress').'</strong></p></div>';
        
update_option($settings$defaults);
    } elseif(
$_REQUEST['updated'] == 'true') {
        echo 
'<div class="updated fade" id="message"><p>'.__('Theme Options''studiopress').' <strong>'.__('SAVED''studiopress').'</strong></p></div>';
    }
    
// display icon next to page title
    
screen_icon('options-general');
?>
    <h2><?php echo get_current_theme() . ' '_e('Theme Options''studiopress'); ?></h2>
    <form method="post" action="options.php">
    <?php settings_fields($settings); // important! ?>
    
    <?php // begin first column ?>
    
    <div class="metabox-holder">
    
        <div class="postbox">
        <h3><?php _e("StudioPress QuickDash"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Do you want access to all StudioPress Themes?"'studiopress'); ?> <br /> <?php _e("Upgrade to the"'studiopress'); ?> <a rel="nofollow" href="http://www.studiopress.com/themes/pro-plus"><?php _e("Pro-Plus package"'studiopress'); ?></a> <?php _e("for only $140"'studiopress'); ?>.<br /><strong><small>(<?php _e("Use PPUPG as the discount code."'studiopress'); ?>)</small></strong></p>
                <p><a target="_blank" href="http://feeds2.feedburner.com/studiopress"><img style="vertical-align:middle;margin:0px 3px 3px 0px;" src="http://www.studiopress.com/images/rss.gif" alt="<?php _e("Subscribe to StudioPress"'studiopress'); ?>" /></a><a target="_blank" href="http://feeds2.feedburner.com/studiopress"><?php _e("Subscribe to RSS"'studiopress'); ?></a><a target="_blank" href="http://feedburner.google.com/fb/a/mailverify?uri=studiopress"></a>&nbsp;&nbsp;<img style="vertical-align:middle;margin:0px 3px 3px 0px;" src="http://www.studiopress.com/images/rss.gif" alt="<?php _e("Subscribe via Email"'studiopress'); ?>" /></a><a target="_blank" href="http://feedburner.google.com/fb/a/mailverify?uri=studiopress"><?php _e("Subscribe via Email"'studiopress'); ?></a></p>
                <p style="border-top: 1px solid #ccc; padding-top: 10px;"><a rel="nofollow" href="http://www.studiopress.com/support"><?php _e("Get Support"'studiopress'); ?></a> | <a rel="nofollow" href="http://www.studiopress.com/themes"><?php _e("Our Themes"'studiopress'); ?></a> | <a rel="nofollow" href="http://www.studiopress.com/affiliates"><?php _e("Become an Affiliate"'studiopress'); ?></a>

            </div>
        </div> 
            
        <div class="postbox">
        <h3><?php _e("Header Blog Title"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Select from the following"'studiopress'); ?>:<br />
                <select name="<?php echo $settings?>[header_blog_title]">
                    <option style="padding-right:10px;" value="Image" <?php selected('Image'get_theme_mod('header_blog_title')); ?>><?php _e("Use an image logo"'studiopress'); ?></option>
                    <option style="padding-right:10px;" value="Text" <?php selected('Text'get_theme_mod('header_blog_title')); ?>><?php _e("Use dynamic text"'studiopress'); ?></option>
                </select></p>
            </div>
        </div>
        
        <div class="postbox">
        <h3><?php _e("Homepage Tabber"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Include the Tabber section?"'studiopress'); ?><br />
                <select name="<?php echo $settings?>[tabber]">
                    <option style="padding-right:10px;" value="Yes" <?php selected('Yes'get_theme_mod('tabber')); ?>>Yes</option>
                    <option style="padding-right:10px;" value="No" <?php selected('No'get_theme_mod('tabber')); ?>>No</option>
                </select></p>
                <p><?php _e("Category for Tab #1:"'studiopress'); ?><br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('tabber_1'), 'name' => $settings.'[tabber_1]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                <p><?php _e("Category for Tab #2:"'studiopress'); ?><br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('tabber_2'), 'name' => $settings.'[tabber_2]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                <p><?php _e("Category for Tab #3:"'studiopress'); ?><br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('tabber_3'), 'name' => $settings.'[tabber_3]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                <p><?php _e("Category for Tab #4:"'studiopress'); ?><br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('tabber_4'), 'name' => $settings.'[tabber_4]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                <p><?php _e("Category for Tab #5:"'studiopress'); ?><br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('tabber_5'), 'name' => $settings.'[tabber_5]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                <p><?php _e("Category for Tab #6:"'studiopress'); ?><br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('tabber_6'), 'name' => $settings.'[tabber_6]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                
                <p><?php _e("Thumbnail dimensions"'studiopress'); ?> (<?php _e("Width x Height"'studiopress'); ?>)<br />
                <input type="text" name="<?php echo $settings?>[tabber_thumb_width]" value="<?php echo get_theme_mod('tabber_thumb_width'); ?>" size="3" /> x <input type="text" name="<?php echo $settings?>[tabber_thumb_height]" value="<?php echo get_theme_mod('tabber_thumb_height'); ?>" size="3" /></p>                
            </div>
        </div>
        
        <div class="postbox">
        <h3><?php _e("Homepage Main"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Select which category you want displayed"'studiopress'); ?>:<br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('featured_main'), 'name' => $settings.'[featured_main]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                
                <p><?php _e("Number of posts to show"'studiopress'); ?>:<br />
                <input type="text" name="<?php echo $settings?>[featured_main_num]" value="<?php echo get_theme_mod('featured_main_num'); ?>" size="3" /></p>
                
                <p><?php _e("Thumbnail dimensions"'studiopress'); ?> (<?php _e("Width x Height"'studiopress'); ?>)<br />
                <input type="text" name="<?php echo $settings?>[featured_main_thumb_width]" value="<?php echo get_theme_mod('featured_main_thumb_width'); ?>" size="3" /> x <input type="text" name="<?php echo $settings?>[featured_main_thumb_height]" value="<?php echo get_theme_mod('featured_main_thumb_height'); ?>" size="3" /></p>
            </div>
        </div>
                                
        <div class="postbox">
        <h3><?php _e("Homepage Top Left"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Select which category you want displayed"'studiopress'); ?>:<br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('featured_top_left'), 'name' => $settings.'[featured_top_left]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                
                <p><?php _e("Number of posts to show"'studiopress'); ?>:<br />
                <input type="text" name="<?php echo $settings?>[featured_top_left_num]" value="<?php echo get_theme_mod('featured_top_left_num'); ?>" size="3" /></p>
                
                <p><?php _e("Thumbnail dimensions"'studiopress'); ?> (<?php _e("Width x Height"'studiopress'); ?>)<br />
                <input type="text" name="<?php echo $settings?>[featured_top_left_thumb_width]" value="<?php echo get_theme_mod('featured_top_left_thumb_width'); ?>" size="3" /> x <input type="text" name="<?php echo $settings?>[featured_top_left_thumb_height]" value="<?php echo get_theme_mod('featured_top_left_thumb_height'); ?>" size="3" /></p>
            </div>
        </div>
                
        <div class="postbox">
        <h3><?php _e("Homepage Top Right"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Select which category you want displayed"'studiopress'); ?>:<br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('featured_top_right'), 'name' => $settings.'[featured_top_right]''orderby' => 'Name' 'hierarchical' => 1'hide_empty' => '0' )); ?></p>
                
                <p><?php _e("Number of posts to show"'studiopress'); ?>:<br />
                <input type="text" name="<?php echo $settings?>[featured_top_right_num]" value="<?php echo get_theme_mod('featured_top_right_num'); ?>" size="3" /></p>
                
                <p><?php _e("Thumbnail dimensions"'studiopress'); ?> (<?php _e("Width x Height"'studiopress'); ?>)<br />
                <input type="text" name="<?php echo $settings?>[featured_top_right_thumb_width]" value="<?php echo get_theme_mod('featured_top_right_thumb_width'); ?>" size="3" /> x <input type="text" name="<?php echo $settings?>[featured_top_right_thumb_height]" value="<?php echo get_theme_mod('featured_top_right_thumb_height'); ?>" size="3" /></p>
            </div>
        </div>
                                
    </div>
    
    <?php // end first column ?>
    
    <?php // begin second column ?>
    
    <div class="metabox-holder">
    
        <div class="postbox">
        <h3><?php _e("SubNavbar"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Include the subnavbar in the header"'studiopress'); ?><br />
                <select name="<?php echo $settings?>[subnav]">
                    <option style="padding-right:10px;" value="Yes" <?php selected('Yes'get_theme_mod('subnav')); ?>>Yes</option>
                    <option style="padding-right:10px;" value="No" <?php selected('No'get_theme_mod('subnav')); ?>>No</option>
                </select></p>
            </div>
        </div>
        
        <div class="postbox">
        <h3><?php _e("468x60 Ad Block"'studiopress'); ?> - <?php _e("Homepage"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Display an ad on the homepage?"'studiopress'); ?><br />
                <select name="<?php echo $settings?>[468_ad_home]">
                    <option style="padding-right:10px;" value="Yes" <?php selected('Yes'get_theme_mod('468_ad_home')); ?>>Yes</option>
                    <option style="padding-right:10px;" value="No" <?php selected('No'get_theme_mod('468_ad_home')); ?>>No</option>
                </select></p>
                
                <p><?php _e("Enter your ad code"'studiopress'); ?>:<br />
                <textarea name="<?php echo $settings?>[468_code_home]" cols=35 rows=5><?php echo stripslashes(get_theme_mod('468_code_home')); ?></textarea></p>
            </div>
        </div>
        
        <div class="postbox">
        <h3><?php _e("468x60 Ad Block"'studiopress'); ?> - <?php _e("Posts"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Display an ad between the post and comments"'studiopress'); ?>?<br />
                <select name="<?php echo $settings?>[468_ad]">
                    <option style="padding-right:10px;" value="Yes" <?php selected('Yes'get_theme_mod('468_ad')); ?>>Yes</option>
                    <option style="padding-right:10px;" value="No" <?php selected('No'get_theme_mod('468_ad')); ?>>No</option>
                </select></p>
                
                <p><?php _e("Enter your ad code"'studiopress'); ?>:<br />
                <textarea name="<?php echo $settings?>[468_code]" cols=35 rows=5><?php echo stripslashes(get_theme_mod('468_code')); ?></textarea></p>
            </div>
        </div>
                    
        <div class="postbox">
        <h3><?php _e("Sidebar eNews &amp; Updates"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Include the eNews &amp; Updates section?"'studiopress'); ?><br />
                <select name="<?php echo $settings?>[enews]">
                    <option style="padding-right:10px;" value="Yes" <?php selected('Yes'get_theme_mod('enews')); ?>>Yes</option>
                    <option style="padding-right:10px;" value="No" <?php selected('No'get_theme_mod('enews')); ?>>No</option>
                </select></p>
                
                <p><?php _e("Google/Feedburner Feed ID"'studiopress'); ?>:<br />
                <input type="text" name="<?php echo $settings?>[enews_id]" value="<?php echo get_theme_mod('enews_id'); ?>" size="20" /></p>
                <p><?php _e("Learn how to find your Google/Feedburner ID"'studiopress'); ?> <a target="_blank" href="http://www.studiopress.com/support/viewtopic.php?f=95&t=11852" ><?php _e("here"'studiopress'); ?></a>.</p>
            </div>
        </div>
                        
        <div class="postbox">
        <h3><?php _e("Blog Page Template"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Select which category you want displayed"'studiopress'); ?>:<br />
                <?php wp_dropdown_categories(array('selected' => get_theme_mod('blog_cat'), 'name' => $settings.'[blog_cat]''orderby' => 'Name' 'hierarchical' => 1'show_option_all' => __("All Categories"'studiopress'), 'hide_empty' => '0' )); ?></p>
                
                <p><?php _e("Number of Posts to Show"'studiopress'); ?>:<br />
                <input type="text" name="<?php echo $settings?>[blog_cat_num]" value="<?php echo get_theme_mod('blog_cat_num'); ?>" size="3" /></p>
            </div>
        </div>
        
        <div class="postbox">
        <h3><?php _e("Analytics/Stat Tracker Code"'studiopress'); ?></h3>
            <div class="inside">
                <p><?php _e("Do you want to include analytics/stat tracker code?"'studiopress'); ?><br />
                <select name="<?php echo $settings?>[analytics]">
                    <option style="padding-right:10px;" value="Yes" <?php selected('Yes'get_theme_mod('analytics')); ?>>Yes</option>
                    <option style="padding-right:10px;" value="No" <?php selected('No'get_theme_mod('analytics')); ?>>No</option>
                </select></p>
                
                <p><?php _e("Enter your analytics/stat tracker code"'studiopress'); ?>:<br />
                <textarea name="<?php echo $settings?>[analytics_code]" cols=35 rows=5><?php echo stripslashes(get_theme_mod('analytics_code')); ?></textarea></p>
            </div>
        </div>
                                
        <p class="submit">
        <input type="submit" class="button-primary" value="<?php _e('Save Settings''studiopress'?>" />
        <input type="submit" class="button-highlighted" name="<?php echo $settings?>[reset]" value="<?php _e('Reset Settings''studiopress'); ?>" />
        </p>

    </div>
    
    <!--end second column-->
    
    </form>

</div>
<?php }

// add CSS and JS if necessary
function theme_options_css_js() {
echo <<<CSS

<style type="text/css">
    .metabox-holder { 
        width: 350px; float: left;
        margin: 0; padding: 0 10px 0 0;
    }
    .metabox-holder .postbox .inside {
        padding: 0 10px;
    }
</style>

CSS;
echo <<<JS

<script type="text/javascript" defer="defer">
jQuery(document).ready(function($) {
    $(".fade").fadeIn(1000).fadeTo(1000, 1).fadeOut(1000);
});
</script>

JS;
}
?>
  #38  
Old 04-09-2012, 11:09 PM
Farquhar Farquhar is offline
Registered User
Genesis Member
 
Join Date: Oct 2011
Posts: 6
Default bad news

After I upgraded, my screen simply goes blank when I try to log into site.
http://batstar.com/wordpress

Any advice? Much appreciated.
  #39  
Old 04-11-2012, 01:09 AM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by Farquhar View Post
After I upgraded, my screen simply goes blank when I try to log into site.
http://batstar.com/wordpress

Any advice? Much appreciated.
There was probably a PHP typo in the page you changed. Turn on WordPress Debug mode to see the error in your browser or examine your web server error log files.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #40  
Old 04-12-2012, 10:05 PM
Farquhar Farquhar is offline
Registered User
Genesis Member
 
Join Date: Oct 2011
Posts: 6
Default

Thanks for your advice. I found the best solution was to reinstall everything.
  #41  
Old 05-12-2012, 08:44 PM
trendygirldesigns trendygirldesigns is offline
Registered User
Genesis Member
 
Join Date: Aug 2011
Posts: 68
Default

Hi,

I've read through almost all of these posts. I am so confused at this point and just need to be sent in the right direction.

I upgraded to WP 3.1 today and a community theme (Pure Elegance) that I have installed and have been working on will not let me choose full width under genesis-theme options. It's basically locked.

I assume that it has to do with this upgrade and have already asked on the theme support thread and was told to ask here, the developer could not help me.

I am at a complete stand still and just need to know where the heck to go from here. I need to have my site finished by Monday and this has been a horrible set back.

Thanks in advance for any help you can give :)
Jennifer
  #42  
Old 05-13-2012, 07:13 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Lightbulb

Quote:
Originally Posted by trendygirldesigns View Post
... will not let me choose full width under genesis-theme options. It's basically locked.

I've read through almost all of these posts.
Jennifer,

You didn't need to do all that. Read the title of this thread: (for Non-Genesis Themes).

Search or ask your question in the Genesis Framework Forum.


HTH,
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
  #43  
Old 06-21-2012, 03:31 PM
Mrs. Cupcakes Mrs. Cupcakes is offline
Registered User
Genesis Member
 
Join Date: May 2012
Posts: 29
Default Blog Page/Number of posts to who

I'm trying to update my theme options, i.e. change the number of posts to show on my home page, but no matter what number I put in (and save changes) it does not alter my home page.
  #44  
Old 06-27-2012, 12:55 PM
CharlesClarkson's Avatar
CharlesClarkson CharlesClarkson is offline
Community Moderator
 
Join Date: Feb 2009
Location: Stephenville, TX, USA
Posts: 11,356
Thumbs up

Quote:
Originally Posted by Mrs. Cupcakes View Post
I'm trying to update my theme options, i.e. change the number of posts to show on my home page, but no matter what number I put in (and save changes) it does not alter my home page.
Sorry for the delay in replying, this thread is pretty old.

This thread is for older StudioPress themes. Your web site is using a much newer theme.

Start a new thread in the Adorable Blogger Child Theme Support Forum for questions regarding that web site or tell us which web site you are working on.
__________________
Charles "Rubeus Hagrid" Clarkson
StudioPress on Facebook

I'm not really a smart person. I just play one on the Internet.

Please use the HTML or PHP tags for pasting code.
Please make your links click-able: this_is_annoying.com
http://this_is_not_annoying.com.
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Agent Theme 3 - Theme Options Not Saving Information Changed hometourjay General Discussion 2 02-24-2011 06:35 AM
Theme Test Drive WP Plugin & Saving Theme Options JoLynn Braley General Discussion 4 01-13-2010 01:28 PM
theme options not working in child theme bornfamous General Discussion 3 01-08-2010 01:07 AM
Disable theme Options - Use theme on a normal blog fabineves General Discussion 5 05-03-2009 02:58 PM
Transfer Old Rev1 theme to Studio Press Theme and upgrade WP colin General Discussion 1 05-03-2009 07:07 AM


All times are GMT -5. The time now is 10:10 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.