Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1035556

    This solution are not good for SEO https://www.dicasafalcone.com/

    #solution 1
    add_filter(‘avf_logo_headline’,’avia_new_logo_span’);
    function avia_new_logo_span(){
    if(is_page(12)){
    $output = “h1”;
    }
    else{
    $output = “strong”;
    }
    return $output;
    }

    #solution 2

    add_filter(‘avf_logo_headline’, ‘logo_new_tag’);
    function logo_new_tag($headline_type) {
    $headline_type = ‘h1’;
    return $headline_type;
    }
    So I need to set H1 title for only first caption (Allevamento Pastore Tedesco Casa Falcone)

    #1036142

    Hey Stefano,

    Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Victoria

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