Be super-handy to disable it from certain Post Types.
(I’d probably make a separate Post Type for these with ACF.)
]]>I will have to find a fix for this, and may publish the code for others to use. I hope this is maintained, and we can get an update out. If the author can help fix this bug, it would be appreciated, but I understand the “Free” part of the plugin, and respect the authors contribution.
]]>I added a suggested patch and need to Support for enabling for Pages and Custom Post Types (CPTs).
Please take a look at that, and let us know if you need any more info to solve.
]]>I also have Yoast configured to work with CPTs.
Here’s a screengrab https://ibb.co/syg7hpv where you’ll see the metabox tabs display but fields are hidden.
Has anyone encountered this issue before?
]]>as follows:
my cpt “collection” is not excluded within TSF, but when generating the sitemap thru TSF, they are missing. Am I missing a point/ setting to make that happen?
Frequent screen freeze, blocks becoming unresponsive. Clicking on the block does not open anything. Even the navigator is unable to open the block in its editing mode. Happened with Text and columns native blocks.
FSE is not a full scale. Custom Post type, taxonomy templating missing. We still have to use hacks in header.php and footer.php templates to load the gutenberg header/footers.
]]>I have registered my custom post type in my child theme, with corresponding custom taxonomies
$args = array(
'label' => __( 'articles', 'onepress-child' ),
'taxonomies' => array( 'publications' ),
'other_stuff' => {...}
);
register_taxonomy('publications','articles', array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_in_rest' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( ),
));
// Registering your Custom Post Type
register_post_type( 'publications', $args );
I’ve also made single-articles.php and taxonomy-publications.php
So far so good, but both localhost/articles and localhost/publications show 404
Am I correct in saying that localhost/publications should load the taxonomy-publications.php template?
]]>