Viewing 7 replies - 1 through 7 (of 7 total)
  • smithwib

    (@smithwib)

    I can second this. Field is reset when you come back to edit.

    ade11

    (@ade11)

    me too!

    Same here !

    smithwib

    (@smithwib)

    There’s a bug in line 1204 with 2 value attributes. Change this:

    <td><input type="text" name="cpt_custom_post_type[capability_type]" tabindex="6" value="post" value="<?php if ( isset( $cpt_capability ) ) { echo esc_attr( $cpt_capability ); } ?>" /> <a href="#" title="The post type to use for checking read, edit, and delete capabilities" style="cursor: help;">?</a></td>

    to this:

    <td><input type="text" name="cpt_custom_post_type[capability_type]" tabindex="6" value="<?php if ( isset( $cpt_capability ) ) { echo esc_attr( $cpt_capability ); } else echo 'post'; ?>" /> <a href="#" title="The post type to use for checking read, edit, and delete capabilities" style="cursor: help;">?</a></td>

    Looks like this has not been fixed as of version: 0.7.2.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Definitely fixed in 0.8, which will be out soon.

    Great news, and no problem — just reapplied the fix. Thanks for a great plugin, Michael.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Capabilities saves but doesn't shows’ is closed to new replies.