spacious - wordpress premium theme free
WooCommerce StoreFront child theme-Cómo eliminar el título en la página de inicio (2)
Busqué en Google para más detalles. Por favor, intente esto
if ( is_page(''page id'') )
{
add_filter( ''the_title'', ''__return_false'' );
}
¿Conoces algún gancho o filtro para eliminar el título en la página principal del tema de StoreFront?
Intento varias soluciones pero nada funciona. Uso un tema infantil de Storefront (Stationery by Woothemes).
Gracias por tu ayuda.
Intente agregar este código a functions.php
:
if ( is_front_page() ) {
remove_action( ''storefront_page'', ''storefront_page_header'' );
}
Esto debería eliminar todo entre (y incluido):
<header class="entry-header">
<?php
storefront_post_thumbnail( ''full'' );
the_title( ''<h1 class="entry-title">'', ''</h1>'' );
?>
</header><!-- .entry-header -->