Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1298748

    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

    #1299106

    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

    #1301694

    Thank you but is not working if I do that the web is broken, is any other way?

    #1301897

    Hi,

    Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.