I have my custom post type and I have my setup working just fine.
I have single-cpt.php and wp-single-cpt.php placed in the correct places.
I need to remove the featured image thats taking up the ENTIRE top of the page! I do not need any css to hide it, I do not want it in the DOM.
OR
Ultimately, for this cpt I would like to just have a simple fullwidth page, it would be nice if the theme already had it set to use the simplest page when people create cpt’s.
As of right now, the only solution I can see is to edit this line:
<?php x_get_view( 'integrity', 'content', get_post_format() ); ?>
Create a copy of content.php and rename it like my-new-single-cpt-content.php
<?php x_get_view( 'integrity', 'my-new-single-cpt-content', get_post_format() ); ?>