• Hi there,

    So, I’m at a complete loss. A little over a week ago our custom taxonomies just stopped saving. We have a user submitted site with a custom post type and custom taxonomies. The submissions come in complete (all data is there and correct), but when you hit publish – boom. No more custom taxonomy. You can’t even manually add them back. They are checkboxes (categories) and nothing works. If I go edit an entry that was displaying correctly, I lose those taxonomy triggers as well. Nothing changed. Literally, one day we were happily publishing content. The next – fail. I’ve also started getting Internal 500 errors on the server, which I figure is related. That said, my host (Knownhost) isn’t being very helpful.

    Any suggestions would be greatly appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter boondocker

    (@boondocker)

    Including the function for the custom taxonomy:

    // Recipe Type Custom Taxonomy
                $recipe_type_labels = array(
                            'name' => __('Recipe Types', 'FoodRecipe'),
                            'singular_name' => __('Recipe Type', 'FoodRecipe'),
                            'search_items' => __('Search Recipe Types', 'FoodRecipe'),
                            'all_items' => __('All Recipe Types', 'FoodRecipe'),
                            'parent_item' => __('Parent Recipe Type', 'FoodRecipe'),
                            'parent_item_colon' =>__('Parent Recipe Type:', 'FoodRecipe'),
                            'edit_item' => __('Edit Recipe Type', 'FoodRecipe'),
                            'update_item' => __('Update Recipe Type', 'FoodRecipe'),
                            'add_new_item' => __('Add New Recipe Type', 'FoodRecipe'),
                            'new_item_name' => __('Recipe Type Name', 'FoodRecipe'),
                            'menu_name' => __('Recipe Types', 'FoodRecipe')
                          ); 
    
                register_taxonomy(
                    'recipe_type',
                    'recipe',
                    array(
                          'hierarchical' => true,
                          'labels' => $recipe_type_labels,
                          'query_var' => true,
                          'rewrite' => array( 'slug' => __('recipe-type', 'FoodRecipe') )
                    )
                );

    [Moderator Note: No bumping. If it’s that urgent, consider hiring someone instead.]

    Thread Starter boondocker

    (@boondocker)

    Bump – we just reset the VPS to prior to the issue and now have the same issue.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom Taxonomy Stopped Saving’ is closed to new replies.