Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@johnmcalester– I’ll try to write up a tutorial on this, but for now you can check out the code in the Piklist Demo Add-on. All the meta boxes in the demo currently have this feature turned on. To see it in action, change the Post Status of a Demo post to LOCK.
Check out any file in this directory to see how this is done: add-ons/piklist-demos/parts/meta-boxes/
The Parameter is on_post_status
,'on_post_status' => array(
'value' => 'lock'
)
SteveKeymaster@askwp- Actually, Piklist automatically flushes the permalinks. I removed that instruction from the tutorial. Please let us know if permalinks are working.
SteveKeymaster@askwp– Try following the directions at register_post_type.
We will figure out an easier way with Piklist eventually.
SteveKeymaster@johnmcalester– Field validation is not completed yet. Unfortunately, it got sidetracked with a few other bugs/projects. But will hopefully be completed in January.
SteveKeymaster
SteveKeymaster@jchamb– You certainly get the prize for the oddest bug found! 😉
We will look look into it.
SteveKeymaster@sschat– Piklist doesn’t replace WordPress functionality, it just makes it easier. The standard WordPress register_post_type() function allows creating your own labels… so Piklist allows it as well.
Using the example at the codex, you would define labels like this with Piklist:
,'labels' => array(
'name' => 'Books',
'singular_name' => 'Book',
'add_new' => 'Add New',
'add_new_item' => 'Add New Book',
'edit_item' => 'Edit Book',
'new_item' => 'New Book',
'all_items' => 'All Books',
'view_item' => 'View Book',
'search_items' => 'Search Books',
'not_found' => 'No books found',
'not_found_in_trash' => 'No books found in Trash',
'parent_item_colon' => '',
'menu_name' => 'Books'
)
SteveKeymaster@txhorselady– That is really odd. Either way, we will still try and fix.
SteveKeymaster@chris– Frontend support is not 100%. Once backend is fully stable, we will move to the front.
SteveKeymaster@txhorselady– We haven’t been able to duplicate, however, I have a temporary solution for you. Log these error notices instead of showing them on screen.
1) Open your wp-config.php file (probably through ftp) and edit it.
2) Paste this code in. Make sure it’s above the line that says That’s all, stop editing! Happy blogging.
define('WP_DEBUG', true); // or false
if (WP_DEBUG) {
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
}
That should temporarily solve the issue.
You can view detailed instructions on the WP Codex.
SteveKeymaster@abdulhadi hallak– Fixed in 0.7.1
SteveKeymaster@txhorselady– We’re having a difficult time duplicating this error. Still working on it!
SteveKeymaster@James Mc– Typo fixed in 0.7.1
SteveKeymaster@kattagami- fixed in 0.7.1. Sorry it took so long.
-
AuthorPosts