Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • kokorog

    (@kokorog)

    Two ways for the manual data fix.

    —————————-
    ◆The “post_type” re-checking one by one

    Dashboard > CPT UI > Add/Edit Taxonomies

    “Edit Taxonomies”tab select a taxonomy to edit.

    Check the “post_type” ex)post/page/media
    “Edit Taxonomy”

    All taxonomies processed repeatedly.

    —————————-
    ◆Add a cord to functions.php file.

    Dashboard > CPT UI > Import/Export
    “Get Code”tab

    Copy the “All CPT UI Taxonomies” area.
    Paste localtext.

    —–
    register_taxonomy( ‘yourTaxonomy’, , $args );
    —–
    ↑all these words grep like this↓
    —–
    register_taxonomy( ‘yourTaxonomy’, array( ‘post’ ), $args );
    —–

    and copy/paste to functions.php file. Upload.

    —————————-

    !Caution

    Dashboard > CPT UI > Import/Export
    “Taxonomies”tab area

    “object_types”:[“post”],”object_type”:[“post”] and “post_types”:[“post”] are intermingled by the version.
    So I don’t recomend to change this area.
    (Is this the cause?)

    kokorog

    (@kokorog)

    sorry, I don’t know programs fix.
    I know own data fix manually…

    kokorog

    (@kokorog)

    If the bug is only me,you don’t have to corrected.
    Because I understand how to fix it.

    kokorog

    (@kokorog)

    Emailed.

    「object_type”:[“post”]」 exists both ver.
    but “get code” tab and “Edit Taxonomies” tab settings are disappeard.

    kokorog

    (@kokorog)

    Michael
    I tried new 1.0.2,bat maybe bug is not fixed…
    Cause is The “post_type” check off.

    All CPT UI Taxonomies
    ————————-
    ◆1.0
    register_taxonomy( ‘price’, , $args );
    ————————-
    ◆1.0.2
    register_taxonomy( ‘price’, ”, $args );
    ————————-
    ◆all clear cases
    register_taxonomy( ‘price’, array( ‘post’ ), $args );
    ————————-
    But links are OK ver.1.0.2.

    kokorog

    (@kokorog)

    I tryed, but ver 1.0.2 does not recover yet.

    ◆process
    —————————-
    ?case1

    Update from 0.9.0(maybe) to 1.0.
    All custom taxonomies disappeared at dashbord.

    just as it is, update from 1.0 to 1.0.1.
    Still all custom taxonomies disappeared at dashbord.

    deactive the one of the existence “custom-post-type-ui”

    new “custom-post-type-ui-1.0.2” upload pluginfolder and active.

    Still all custom taxonomies disappeared at dashbord.

    —————————-
    ?case2

    Update from 0.9.0(maybe) to 1.0.
    All custom taxonomies disappeared at dashbord.

    Downgrade 0.9.5 , and appeared all custom taxonomies.

    Update 1.0.2, all custom taxonomies disappeared at dashbord again.

    —————————-
    ?case3

    Update from 0.9.0(maybe) to 1.0.
    All custom taxonomies disappeared at dashbord.

    Checking again the associated post types to each taxonomy myself.

    All custom taxonomies appeared at dashbord.

    deactive the one of the existence “custom-post-type-ui”

    new “custom-post-type-ui-1.0.2” upload pluginfolder and active.

    All custom taxonomies disappeared at dashbord again.

    —————————-

    I don’t know why it is.

    kokorog

    (@kokorog)

    I’ll help you with a test.
    Please tell me a link.

    kokorog

    (@kokorog)

    @michael

    Update from 0.9.0(maybe) to 1.0.
    All custom taxonomies disappeared at dashbord.

    just as it is, update from 1.0 to 1.0.1.
    Still all custom taxonomies disappeared at dashbord.

    The “post_type” check had came off, ver 1.0.1 does not recover.
    But it was settled checking again the associated post types to each taxonomy.

    All CPT UI Taxonomies
    —————————–
    ◆old(Update from 0.9.0 to 1.0 All custom taxonomies disappeared )

    add_action( ‘init’, ‘cptui_register_my_taxes’ );
    function cptui_register_my_taxes() {

    $labels = array(
    ‘name’ => ‘price’,
    ‘label’ => ‘price’,
    );

    $args = array(
    ‘labels’ => $labels,
    ‘hierarchical’ => 1,
    ‘label’ => ‘price’,
    ‘show_ui’ => 1,
    ‘query_var’ => 1,
    ‘rewrite’ => 1,
    ‘show_admin_column’ => 0,
    );
    register_taxonomy( ‘price’, , $args );

    —————————–
    ◆new(checking again the associated post types)

    add_action( ‘init’, ‘cptui_register_my_taxes’ );
    function cptui_register_my_taxes() {

    $labels = array(
    ‘name’ => ‘price’,
    ‘label’ => ‘price’,
    );

    $args = array(
    ‘labels’ => $labels,
    ‘hierarchical’ => true,
    ‘label’ => ‘price’,
    ‘show_ui’ => true,
    ‘query_var’ => true,
    ‘rewrite’ => true,
    ‘show_admin_column’ => false,
    );
    register_taxonomy( ‘price’, array( ‘post’ ), $args );

    —————————–

    I knew how long it was dependent on this plug-in.
    Thank you great plugin anyway @michael Beckwith

    kokorog

    (@kokorog)

    version 1.0 doesn’t work for me either.
    but It was settled by myself.

    1. CPT UI> Add/Edit Taxonomies

    2. tab “Edit Taxonomies”

    3. “Select a taxonomy to edit.”

    4. Check the “post_type” ex)post/page/media

    5. “Edit Taxonomy”

    All taxonomies processed repeatedly.

    The “post_type” check had came off by some cause.

Viewing 9 replies - 1 through 9 (of 9 total)