Community Page
- www.wp-fun.co.uk Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Hi there Andrew. your "Fun with Categories" plugin is certainly a very useful plugin. But I am having a little bit of trouble and was wondering if there is any example templates out...
- Great post! I've bookmarked your blog. Hope we can swap links. Why can't I open your rss feed? No post is showing. Best Regards! Ginj
- Can you paste the entire error in?
- I'm getting the Parse error: syntax error, unexpected T_STRING, expecting '(' in error too.
- Atompub is really available or not? But i think this project will be more useful for the normal people to understand..Always Google rocks and leave their marks in every field..
Jump to original thread »
How many plugins do you use that have a small number of config settings that you almost never need to go back to? These plugins might help prevent spam, add a widget, or shortcode; they have settings but, crucially, don’t need tweaking or changing very often, if at all. Wha
... Continue reading »
9 months ago
I actually suggested several options for reducing the menu jumble that plugins inevitably produce. One alternate solution was a unified page of one-off options for small plugins. The trouble was, you had to install a plugin to display the unified options, and explicit plugin dependencies didn't exist, so if you didn't code an alternate way to display your plugin options, your plugin had no config!
Maybe you can get more traction for the concept and have it integrated into WordPress core code. It's hard to get developers to universally use something that requires more code because the core software won't support it for some reason.
Sorry to invade your WP with Habari, but reading your recent twitter exchange, I know where your ideas spawned from. ;)
9 months ago
My prefered method of reducing the jumble is to require people to learn how to change variables at the top of plugins but I don't think that would go down too well. :-)
It is quite simple to do so I'm not even sure it is necessary in the core. If people can see how to do it quickly and easily then they have the option.
9 months ago
Although I understand that because of how some of the administration panels are named, settings links sometimes don't belong in a certain menu versus others. This is a usability issue. Still, I'd like to see some sort of unofficial standard to make the end users life a little less complicated.
9 months ago
For sure there will be people who will think the plugin page is a stupid place to put config details as it takes it out of the menu system and others who think that is precisely why it is a good idea.
8 months ago
I have tested this code and i have a probelm, maybe you can help me?
How it is possible to use a input-field type checkbox for update the vaule in options?
I can't see the resoltion.
Thanks!
8 months ago
7 months ago
<input type="checkbox" name="secure_wp_index" id="secure_wp_index" value="1" <?php if ( $secure_wp_index == '1') { echo "checked='checked'"; } ?> />Wth this is it possible to save the value of the checkbox. How i make this in the form with wp_ajax?
7 months ago
You need to add a new value in the jquery using
if ($('#secure_wp_index').is(':checked'))
{
SecureWP = 1;
} else {
SecureWP = 0;
}
Then add it to the post object right after "pcsc_config-API" : API_Val, so you change that to read:
"pcsc_config-API" : API_Val , "SecureWP" : SecureWP
you can then check what value is set in PHP using $_POST['SecureWP'] == 1