Hello, do you know if it is possible to eliminate the first part of the category h1?
https://faceclinic.es/implantes-dentales/
In this url you can see as h1 “Listado de la categoría: Implantes Dentales” -. the key word is “implantes dentales” so i want to eliminate “Listado de categoría:”
Is is possible? thank you
Hey carmen,
Please try this in functions.php in your child theme:
if(!function_exists('avia_which_archive'))
{
function avia_which_archive()
{
$output = '';
if ( is_category() )
{
$output = __('','avia_framework').' '.single_cat_title('',false);
return $output;
}
}
}
Best regards,
Rikard
Thank you but is not working if I do that the web is broken, is any other way?