Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1286775

    Hallo,

    auf allen Unterseiten gibt es einen Seitentitel und dort ist immer eine H1 Überschrift hinterlegt. Ich möchte aber das der Seitentitel keine Überschrift ist sondern einfach nur ein Link. geht das irgendwie?

    Gruß Stephan

    #1287912

    Hallo Stephan,

    I’m not sure I understand what you are referring to. Could you try to explain a bit further, or post a screenshot of the element which are looking change please?

    LG,
    Rikard

    #1290952
    This reply has been marked as private.
    #1290953
    This reply has been marked as private.
    #1291668

    Hi,

    Thanks for the screenshot, and clarification. Please try this in your functions.php file to change the h1 tag to a paragraph instead:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
      function fix_single_post_title($args,$id){
        $args['heading'] = 'p';
        return $args;
    }

    Best regards,
    Rikard

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