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
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
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