• Resolved Becky Davis

    (@bdgardengirl)


    I about had a heart attack, working on a site with half a dozen custom taxonomies and hundreds of terms, with the update they all disappeared! CPT UI showed now taxonomies to edit and my posts showed nothing but categories. Reverting to 8.5 brought things back, but this was not fun. Please let me know when you have this fixed.
    Thanks

    https://www.ads-software.com/plugins/custom-post-type-ui/

Viewing 15 replies - 46 through 60 (of 71 total)
  • Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Replied ??

    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

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    kokorog, the checking of the associated post types with regards to a custom taxonomy will be fixed with 1.0.2, which I hope to have released tomorrow.

    The settings are saving, the re-checking of the inputs once clicking to edit is not happening. I can link you to a zip to help test 1.0.2 if you’re willing.

    kokorog

    (@kokorog)

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

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    https://github.com/WebDevStudios/custom-post-type-ui/archive/1.0.2.zip

    Should create a folder named “custom-post-type-ui-1.0.2” or so, which you would be able to upload next to the current release. Would be easy to deactivate the first, and activate this long enough to test, and then go back to the first one.

    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.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    kokorog I just pushed out 1.0.2 with a couple more changes that I didn’t have last night when I last replied. Hopefully this helps fix it, but if not, would you be willing to send me your previous and new settings for the plugin? That way I could analyze what’s going on and why it may not be working as expected?

    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.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Can you email me the values in your import/export tabs, from the right side textareas?

    michael @ webdevstudios dot com

    kokorog

    (@kokorog)

    Emailed.

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

    kokorog

    (@kokorog)

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

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    If you know a fix, please let me know so I can help determine best course of action and help me evaluate things.

    kokorog

    (@kokorog)

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

    latro666

    (@latro666)

    Unbelievable! the new update has de-linked every taxonomy again! after i spent hours updating them.

    We have auto update of plugins in WP, gonna have to move away from the custom post ui plugin dude sorry it was great as a time saver but thinking about encoding post types manually from now on cant have this keep happening.

    Unsure why you felt you needed to change it really… did the job fine. I think it’d be a better idea to roll back to the stable version that worked and push that out as i can see a lot of confidence already being lost.

    Had reservations about using a plugin to drive such a fundamental part of sites to begin with, guess should of listened to our gut.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    kokorog, the manual data fix is just as potentially helpful to me, feedback wise ??

Viewing 15 replies - 46 through 60 (of 71 total)
  • The topic ‘Update to 9.0 made all custom taxonomy disappear’ is closed to new replies.