I am trying to: get the extra page title at the top left of these pages to go away
Link to a page where the issue can be seen:
hidden link
I expected to see: no extra page title
Nigel
Supporter
Languages:
English (English )
Spanish (Español )
Timezone:
Europe/London (GMT+00:00)
Hi there
Your theme has a settings (under Appearance > Theme Settings) to enable/disable that page title (screenshot).
It is universal, though, I don't think the theme is capable of selectively enabling/disabling it for specific post types.
In which case you need to create a child theme and edit the theme files.
Or a simpler solution would be to use CSS to hide that section. It should be possible to target it it like so:
.single-materials header.page-header {
display: none;
}