Events Manager messes up permalink structure of other Custom Post Types
-
Hello,
My site has a few Custom Post Types which were working fine until I installed and enabled Events Manager.
Before installing :
/paintings -> showed archive
/paintings/slug -> showed single
/galleries/slug -> showed taxonomy archiveAfter installing :
/paintings -> 404
/paintings/slug -> 404
/galleries/slug -> still worksBellow is the configuration for my Custom Post Types.
What could be causing this and is there a way to resolved it ?
register_post_type( 'paintings', 'public' => true, 'publicly_queryable' => true, 'exclude_from_search' => false, 'show_ui' => true, 'query_var' => true, 'show_in_nav_menus' => true, 'menu_position' => 8, 'rewrite' => array( 'slug' => 'paintings', 'with_front' => true ), 'has_archive' => 'paintings', 'capability_type' => 'post', 'hierarchical' => false, 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'trackbacks', 'custom-fields', 'revisions', 'sticky') ) );
register_taxonomy( 'galleries', array('paintings'), array('hierarchical' => true, 'show_ui' => true, 'query_var' => true, 'rewrite' => array( 'slug' => 'galleries' ), ) );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Events Manager messes up permalink structure of other Custom Post Types’ is closed to new replies.