The settings tag has no wiki summary.
0
votes
1answer
149 views
Set Wordpress settings programmatically
Is it possible to set certain settings from the theme functions file for example the setting Enable threaded (nested) comments ca I set it to allow 2 as the answer without having the user go into the ...
1
vote
1answer
83 views
Woo Framework: woo_cat_featured not populating
In framework settings:
$options[ 'featured_cat' ] = array( "name" => "Featured Category",
"desc" => "Featured Posts will display in the main rotator on the homepage.",
...
0
votes
2answers
352 views
How to save user meta on custom admin page
I have removed the edit profile page from WP admin as I don't want users to be able to edit their details as this is a closed intranet and their details are fed from AD.
However I do want them to be ...
0
votes
1answer
329 views
How can I increase the font sizes used by the WordPress visual and HTML post editors?
When I'm editing a post, the text looks too small. I want larger text while editing.
Note that I'm not referring to increasing the text in the resulting post ... I mean the text as it is displayed ...
0
votes
1answer
337 views
wp_usermeta wp_usersettings
I would like to know what does these meta_value means for wp_usersettings meta_key in wp_usermeta table?
meta_key: wp_usersettings
meta_value: m1=o&m3=o&m0=o&m2=o
Thanks
0
votes
1answer
161 views
How to add a custom form to a plugin's setting page
I have a settings page for a plugin which I created using this function:
function vsp_create_menu() {
add_menu_page( 'Visitors Statistics', 'Visitors Statistics', 'manage_options', ...
1
vote
2answers
222 views
Possible to add another setting to 'Front page displays' setting for Custom Post Type
Let me set the scene:
I have a CPT that will work on a multi-site installation and some of the sites will be in a different language. For example my CPT is Case Studies I would use a URL structure ...
1
vote
1answer
149 views
Get page ID of page that is set as the posts page
In WordPress settings you can set a page as the Posts Page. This can be found:
WP-Admin->Settings->Reading Settings->Front page displays
How do I retrieve the page ID that is set in this ...
2
votes
1answer
498 views
Creating Settings Page with dropdowns for Plugin
I am setting up my plugin's settings page and I am able to get the fields I want on the page, but I want them to be dropdowns not textboxes... I have not found any useful info on the web on how to do ...
0
votes
1answer
123 views
How can you store your option at the permalink settings page?
I followed the Settings API page and used the example to get the following code:
http://pastebin.com/CUA7nLCR
When I change $settingsPage to general, reading, writing, etc. this all works flawlessly ...
0
votes
1answer
255 views
Can't save checkbox option
I know this is a mess, but can someone tell me why I can't save to checkbox option in this plugin?
/* Runs when plugin is activated */
register_activation_hook(__FILE__,'vigtigt_besked_install');
...
0
votes
1answer
99 views
Plugin settings page template
When creating plug-ins for WordPress, there are times when you need to make a settings panel. Sometimes, you need more than one page, and they can be quite complicated.
So far, I have been ...
0
votes
1answer
216 views
Menu_slug used for creating options page
I am following this page on designing options menus: http://codex.wordpress.org/Administration_Menus
What is the significance of the menu_slug ?
I ask because when I change this value, the options ...
5
votes
2answers
432 views
What are the advantages to the Settings API?
Let me preface this by saying that I hardly ever work with WordPress - in fact, the last time I did a site in WordPress was back during 2.2. Yesterday I made quite a mess of everything and asked ...
0
votes
2answers
101 views
How to exclude my home page from url of my internal pages?
I just definsed at Setting> Reading a page I have created called "home" as my homepage. The change was ok, but since them all my internal pages url shows an extra /home/in their urls.
How can I avoid ...
0
votes
2answers
268 views
/%post_name%/ or /%postname%/ in Permalinks?
In Settings-->Permalinks is there any difference between:
checking Custom Structure and using:
/%post_name%/
or
/%postname%/
Are they both correct? Will they both work?
Thank you.
-Laxmidi
1
vote
2answers
411 views
Custom settings disappear during database migration?
I've noticed a problem that pops up occasionally when moving a WP install from one place to another (usually the same server.)
I copy all the files to their new location, get a mysql dump, update all ...
0
votes
1answer
175 views
I am not able to enable jQuery in theme settings
I have tried to - enable Use jQuery & then save changes.
But after saving changes, checkmark Use jQuery automatically unchecks itself.
I am not sure whats going on. Please help me here.
15
votes
2answers
1k views
'Global' settings page for multisite plugin
I'm working on a plugin that will be installed in a multisite instance.
How do I create a single settings page that is visible at the "Network admin" level only - most of the guides i've seen relate ...
2
votes
2answers
445 views
Theme Options page with tabs
I have a theme that I'm developing from an HTML template I have. I'm also designing an options page along with a plethora of plugins built-into the theme itself. I've chosen a tabbed interface and I'm ...
2
votes
1answer
811 views
How to upload images using Settings API
I want to allow users to upload images for use in a rotating banner. I tried using the media library, but didn't get much help ... So I thought, I'd just implement the upload myself. But I encountered ...
2
votes
2answers
172 views
Wordpress Plugin Setting's POST
I've developed a few plugin for Wordpress. Currently I've not been able to replicate the way wp save settings. I've a setting page which I learned from a tutorial. It POST to option.php, and wp take ...
1
vote
1answer
105 views
How to tell if plugin has been network activated
I have the following lines of code that add the settings link and setup for my plugin:
add_action('admin_menu', array(&$this, 'admin_settings_menu')); // Add menu to options
...
0
votes
1answer
66 views
Settings API no update status? (refering to the yellow bar when you save settings)
I just created some settings for my theme ... not perfect, still learning ...
http://pastie.org/1988772
I am expecting the "Settings Saved" yellow box
Do I need to do something on my part?
2
votes
2answers
190 views
Need help understanding/coding with Settings API
So I did something like below, but I get just (I am expecting a Facebook textbox?)
I hope its not too messy. I am new to Settings API ...
add_action('admin_init', function() {
...
2
votes
4answers
522 views
How to add a post from a custom post type as the static page?
I have created a custom post type and added some custom metaboxes to the page edit screen. My objective was to provide specific metaboxes which a user can edit which in turn would allow a user to ...
2
votes
2answers
122 views
Why might $input (Settings API) be coming through empty?
I'm trying to be a good thememaker and pass all my settings through the Settings API, but I'm running into some difficulty in the sanitization callback function.
The core of the problem is this: the ...
2
votes
3answers
247 views
Clone plugins (and settings) to new installation?
Is it possible to clone the plugins and settings from a WordPress site to a new fresh install?
I don't want any of the content from the original site I just want all the plugins used and their ...
0
votes
1answer
361 views
Network-Wide Plugin Settings Management
I'm using Wordpress 3.1.2, and have three blogs in a wordpress network. I would like to change some settings for a specific plugin, but have the changes applied to all the blogs on the network. I ...
1
vote
1answer
280 views
Theme settings keep getting reset/erased
I bought a theme from Themeforest called Anan. I am currently hosting the site on Bluehost.
Here's the problem: every few days the theme settings keep getting erased (reset) so I have to re-upload ...
0
votes
1answer
398 views
Using call_user_func() within add_settings_section() within a Class
I am trying to add_settings_section() by supplying a callback with parameter as follows:
class warpress_progression_plugin {
function warpress_progression_plugin() {
$this->__construct();
...
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?
...
7
votes
2answers
242 views
Plugin for editing options on multisite?
does anyone know of a plugin for mass editing of settings on a multisite installation? Something like Plugin Commander for Settings?
1
vote
2answers
396 views
What could cause my plugin's options/settings page not to load?
I'm having an issue with one site in which my plugin is installed. The "settings" page will not load. When I click on "settings", it loads the settings page but the page is blank after the "Upgrade to ...
0
votes
2answers
500 views
wordpress - php class to add pages and fields in admin panel
im trying to build a little class to help build some simple input fields into a cutom page in the admin panel of wordpress, here's what i've got:
<?php
class create_panel {
public ...
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 ...
1
vote
1answer
547 views
Securing wp-config leads to sensitive information leak on wp-settings
I read the following tutorial, which mentions moving your config file out of an HTTP-accessible folder.
http://codex.wordpress.org/Hardening_WordPress#Securing_wp-config.php
I did this, and it works ...
2
votes
3answers
2k views
Where to hook register_settings for Settings API when also want to update options outside of Settings API?
The Settings API is a convenient way to add administrative options. Tutorials on the settings API hook register_setting to admin_init. But what if you also want to programmatically change the same ...
6
votes
2answers
2k views
How to display admin error notice if settings saved succesfully?
Title sounds counter-intuitive but bear with me. :)
I have options page, made with Settings API. When user enters invalid data I want to display error notice with add_settings_error() call.
But! To ...
1
vote
3answers
2k views
Can't delete unwanted favicon
I have a favicon that is a remnant of a disactivated wordpress theme. I can't find the favicon file in the theme folder, or the wordpress or server root.
I have added my own reference to a new ...
9
votes
3answers
5k views
How to get WordPress Time Zone setting?
Can someone tell me how to get the time zone that is set in the WordPress Admin?
For example, if the blog is set to Eastern time, I need this exact string to print out:
US/Eastern
This is for a ...
4
votes
1answer
865 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 ...
1
vote
2answers
98 views
What changes we need to make to a theme so it can be installed as a MU Theme?
I downloaded the free Wootheme Irrestible and if installed on a stand alone Wordpress, works very well.
Now, if we enable Multiple Sites on 3.x and set this theme to be the theme of a new site it ...
1
vote
1answer
207 views
why is unregister_setting() undefined?
trying to call
unregister_setting('general','users_can_register');
so as to removed the option for allowing or dissallowing user registration (it is required in the theme, so it is set ...
1
vote
1answer
409 views
problems with wordpress and php version 5.3.3-1
I recently installed a server with new php version - 5.3.3-1 and when I imported wordpress site and database, there were some problems with plugin settings - some of them were reset. In pagenavi ...
0
votes
3answers
329 views
Displaying the full text instead of post title
I've installed recently WordPress (I guess it should be 3.0? cannot find easily the version number) and my first post appears only the title (linked) and to see the full text one must click the title. ...
3
votes
1answer
552 views
Is there a hook attached to general settings save?
I want to add a field to the general settings page, but I can not save the field because I can't find a hook for the pages save.
Any ideas?
5
votes
2answers
420 views
Modifying a JS file with data from plugin settings
I have a plugin that, among other things, has a javascript file that requires a few user specific settings. What would be the best way to get those settings into javascript from the plugin's settings ...