Inicio › Toolset Professional Support › [Resuelto] Hide the site title completly
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.
Hoy no hay técnicos de soporte disponibles en el foro Juego de herramientas. Siéntase libre de enviar sus tiques y les daremos trámite tan pronto como estemos disponibles en línea. Gracias por su comprensión.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
- | 9:00 – 13:00 | 9:00 – 13:00 | 9:00 – 13:00 | 9:00 – 13:00 | 9:00 – 13:00 | - |
- | 14:00 – 18:00 | 14:00 – 18:00 | 14:00 – 18:00 | 14:00 – 18:00 | 14:00 – 18:00 | - |
Supporter timezone: Asia/Karachi (GMT+05:00)
Etiquetado: Layouts plugin, Views plugin
Este tema contiene 2 respuestas, tiene 2 mensajes.
Última actualización por Akhil hace 5 años, 10 meses.
Asistido por: Waqar.
Hi waqar, good day.
this might be on css issue,
If you reload this link :enlace oculto , you can see a glimpse of the "title" loading then go to hide by top header.
is there anywhere to remove that ? thanks.
Hi Dee,
Thanks for asking! I'd be happy to help.
The custom CSS code that is loaded from inside a View, is loaded in the page's markup. But by the time that code has loaded, page's rendering has also started and you see a glimpse of the page's title until the CSS code to hide it becomes available to the browser.
( note: this is how CSS code and browsers work in general and it is not something specific to any particular plugin, theme or platform like WordPress )
To avoid this, you can load any CSS code that controls or adjust the theme's design elements further up in the markup.
For example, you can move the code to hide that page title at WP Admin -> Appearance -> Customize -> Additional CSS.
Note: The code that will be included in "Additional CSS" field will load on all pages of the website. To limit its effect to only the "New Launch" post type's archive page ( enlace oculto ), you can change the code from:
header.page-header { display: none; }
To:
body.post-type-archive-new-launch header.page-header { display: none; }
I hope this helps.
regards,
Waqar
you're brilliant , thank you