Hi tux,
The [select-faq] uses the same code as the general [ultimate-faqs] shortcode to output FAQs.
You can use the following Custom CSS to hide the extra content on a specific page. You can paste it in the Site Editor styling section, or, if you are using a non-block theme, into the additional CSS section of the customizer (e.g. WP Admin Sidebar > Appearance > Customize > Additional CSS)
.page-id-XXX .ewd-ufaq-faq-tags,
.page-id-XXX .ewd-ufaq-faq-categories,
.page-id-XXX .ewd-ufaq-post-margin-symbol {
display: none !important;
}
.page-id-XXX .ewd-ufaq-faq-body {
padding-left: 0px !important;
}
.page-id-XXX .ewd-ufaq-faq-title-text h4 {
margin: 0 !important;
}
Make sure to update the XXX to the correct page ID.