Tagged Questions
0
votes
1answer
34 views
Wordpress theme options framework, I can't read them in my templates
I successfully created my theme options page using this framework:
https://github.com/devinsays/options-framework-theme
The problems Is that when, for example, I try to load the Option: 'logo_image'
...
0
votes
0answers
21 views
After added two section to theme options, I can't save the content
I added a section for my options, everything works fine. I added a new section (social) and after that I can't save the content of the "General Options" form. The business section is working. Where is ...
-1
votes
1answer
83 views
Error: options page not found
This error is really well known and every where I look its either I am not doing:
<form method="post" action="options.php">
or I am not registering my options, which is not the case as seen ...
3
votes
1answer
56 views
Outputting results from select box option in options panel
I'm trying to figure out how to get the results from a select box option and apply them to my theme. When I use a text input or color picker it works fine. But when I use a select box, nothing is ...
0
votes
1answer
74 views
Link blogname and blogdescription to the Options Framework
I'm putting together a Theme Options page, where the user(s) I'm building this for would like to be able to edit a few settings directly from this page, including of which - the Site Title and ...
2
votes
1answer
158 views
Site Title and Tagline in Theme Options Page
I'm using the Options Framework Theme to put together an options page. The user(s) I'm building this for would like to be able to edit a few settings directly from this page, including of which - the ...
0
votes
1answer
43 views
wordpress theme option in other templates
I am using word press theme option panel and using those in my header.php without any issues, code as follows...
<?php
// loading theme options. used in header.php
global $options;
...
2
votes
2answers
189 views
Separate backend “Widgets” page for each language
Im currently trying to make my backend work with multiple languages.
Im using qTranslate as my translation plugin.
So far I have accomplished a custom option page with multi-language support. When ...
0
votes
2answers
1k views
Save Theme Options (options.php) From The Frontend
I try to save an option from the frontend but i can't find yet how to do it.
So, the idea is to give the blog owner a simple form with a dropdown that can select a different stylesheet.css.
I have ...
3
votes
2answers
411 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 ...
0
votes
3answers
2k views
Can't save options
I created theme options page using Settings API, everything works fine but I can't save options. I tried to figure it out where I missed something but I failed. Any idea what can cause this problem?
...