Passer la navigation

[Résolu] remove page title

This support ticket is created Il y a 2 years, 1 month. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Ce sujet contient 1 reply, a 2 voix.

Dernière mise à jour par Nigel Il y a 2 years, 1 month.

Auteur
Publications
#2695033

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:
lien caché

I expected to see: no extra page title

#2695046

Nigel
Supporter

Les langues: Anglais (English ) Espagnol (Español )

Fuseau horaire: Europe/London (GMT+01: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;
}