Forums
Home / Plugin: Joinchat / Disable in Custom Post Types not work
(@yaelweb)
1 year, 2 months ago
I was able to hide it on any page and post, but it doesn’t appear to deactivate it in a custom post.
Used Custom Post Type UI plugin
Attachment screenshot…
(@creapuntome)
Hi, Joinchat by default detects custom post types that has archive. You can modify your CPT and enable archive feature or you can add this code snippet to add your CPT in Joinchat settings:
add_filter( 'joinchat_custom_post_types', function( $cpts ) { return array_merge( $cpts, array( 'your_cpt_name' ) ); } );