The theme-options tag has no wiki summary.
0
votes
1answer
321 views
How to add drag and drop functionalities to a div inside option panel
Hi to all it's a few days that I'm trying to add some new functions to my theme option-panel, you can see my questions here:
How to add an export function to a custom Option Theme Page
Add a preview ...
0
votes
1answer
3k views
Where is default wp_head() implemented?
I'm trying to customize a theme, and I see that the header.php calls "wp_head()". I can't seem to find an implementation of this in the theme, so I presume there is a default implementation that ...
1
vote
1answer
372 views
How to add an export function to a custom Option Theme Page
I'm creating a new Wordpress template and I have a question:
I've added a custom Option Page to my new template (you can see what I'm doing Here and Here) but now I would like to add a new function.
...
3
votes
2answers
660 views
Modify CSS via Theme Control Panel
Hi to all I'm trying to create an advanced control panel for my first Wordpress template but I'm not able to add a function that I will need.
The function that I'm trying to add is the possibility to ...
0
votes
1answer
364 views
'Invalid Error' when saving theme options - only in Google Chrome
I have users when get an 'Invalid Error' when trying to edit the custom theme options in my theme, WPFolio. The options (just some CSS rules: page container color, font color, headline/body font, ...
3
votes
2answers
408 views
Submenu pages delete settings from options array when saved
I'm writing a theme and adding a menu with several submenu pages. It works fine, except that I'm trying to use only one array to save all the settings into the database and this is causing some ...
1
vote
1answer
329 views
Using if/else statements with output from theme options
In another question I was talking about using theme options to modify CSS. This is a separate but related question.
When a user sets a link colour in my theme, here's how I'm including their choice:
...
2
votes
1answer
608 views
How to make alert for new version on theme options?
Let say my theme host on my server. User download my theme and use it. Now I want notify @ alert for new version of my theme.
Example to show "New version has been release. Please download at ..."
...
1
vote
1answer
407 views
How to override .htaccess with new rules without ftp or edit it manual
I want script will add new rules to current .htaccess and user no need to ftp or edit it manually.
Example, I use timthumb for resize image on my theme and want rewrite the URL and current .htaccess ...
1
vote
1answer
518 views
Theme option editing capability problems
I've setup some theme options using this helpful guide as a template. I want to give my editors the option to update these theme options, so I granted the edit_theme_options capability as mentioned ...
0
votes
1answer
212 views
How to add or delete default value theme options while activate and deactivate theme
I want to add & reset default value for my theme options while activate and deactivate a theme
More clearly something like this
if(theme active)
add_option();
// add new option to the theme ...
1
vote
1answer
159 views
How to get a value for admin css color either gray or blue
I want implement theme option which will have two css files.
Example, if current admin set their profile to blue color I want load blue css for the theme options.
if (current-value-css-admin)
load ...
3
votes
1answer
12k views
How to use media upload on theme option page?
I want implement upload logo to my theme option page. Currently I follow this code
What I have done for now load a related jquery for the media upload
function load_only() {
add_thickbox();
...
1
vote
3answers
444 views
How to load default scripts included with WordPress correctly?
I want to know the correct way to load existing scripts in wp-includes/js/jquery/
Example I want to load jQuery UI Tabs
What I have done for now
function sample_exists_code() {
echo '<script ...
2
votes
1answer
178 views
Can I use theme options to change two things at once?
Possible noob question -- please be nice.
I'm doing up a theme options page using the sample from Themeshaper, and one of the options I want to have is to set the width of the sidebar.
To do this ...
2
votes
2answers
2k views
Uploading files in admin panel?
I want to allow my users to upload files in admin panel, but I'm not sure where should I upload these files and how the script should look like?
<p>Please provide link to a file or click ...
4
votes
1answer
864 views
Best practices for a Style/CSS based theme options page?
I would like to create a theme options page based only on changing the site wide CSS styling. For instance body/container background colors, font-sizes, font colors, etc.
I have accomplished this by ...