Forum Replies Created

Viewing 15 posts - 2,806 through 2,820 (of 2,964 total)
  • Author
    Posts
  • in reply to: Make a field "Read-only" #613
    Steve
    Keymaster

    @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'
    )

    in reply to: No Settings –> Permalinks on Network sites #588
    Steve
    Keymaster

    @askwp- Actually, Piklist automatically flushes the permalinks.  I removed that instruction from the tutorial. Please let us know if permalinks are working.

    in reply to: No Settings –> Permalinks on Network sites #587
    Steve
    Keymaster

    @askwp– Try following the directions at register_post_type.

    We will figure out an easier way with Piklist eventually.

    in reply to: Make a field required #585
    Steve
    Keymaster

    @johnmcalester– Field validation is not completed yet. Unfortunately, it got sidetracked with a few other bugs/projects. But will hopefully be completed in January.

    in reply to: Custom Taxonomy not showing up on post edit. #580
    Steve
    Keymaster

    @jchamb– You have ‘hide_meta_box’ => true when registering the Taxonomy.

    Just remove that line.

    Hiding the default WordPress meta box can be useful, if you want to display your taxonomy as a dropdown or radio buttons. Check out this tutorial.

    in reply to: 3.5 media insert broken with piklist demo turn on #575
    Steve
    Keymaster

    @jchamb– You certainly get the prize for the oddest bug found! 😉
    We will look look into it.

    in reply to: Setting labels on new type #574
    Steve
    Keymaster

    @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'
    )

    in reply to: Bug Report: Taxonomies + WP 3.5 #570
    Steve
    Keymaster

    @txhorselady– That is really odd. Either way, we will still try and fix.

    in reply to: initial $value not set in radio.php #569
    Steve
    Keymaster

    @chris– Frontend support is not 100%. Once backend is fully stable, we will move to the front.

    in reply to: Bug Report: Taxonomies + WP 3.5 #565
    Steve
    Keymaster

    @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.

    in reply to: date-picker field returns "false" #557
    Steve
    Keymaster

    @abdulhadi hallak– Fixed in 0.7.1

    in reply to: Bug Report: Taxonomies + WP 3.5 #556
    Steve
    Keymaster

    @txhorselady– We’re having a difficult time duplicating this error. Still working on it!

    in reply to: Bug Report: Taxonomies + WP 3.5 #555
    Steve
    Keymaster

    @James Mc– Typo fixed in 0.7.1

    in reply to: Bug with settings when multiple tabs are used #554
    Steve
    Keymaster

    @Daniel Ménard– Fixed in 0.7.1

    in reply to: Bug: display AddMore #553
    Steve
    Keymaster

    @kattagami- fixed in 0.7.1. Sorry it took so long.

Viewing 15 posts - 2,806 through 2,820 (of 2,964 total)