Hi,
i putted this code into our functions.php but it did not work:
Result still the same:
Regards Martin
Hi pixopolis2222!
can you provide us admin access, so we can take a deeper look please? post login details here as private reply.
Cheers!
Andy
OK, here we go
Hey!
I am not able to edit functions.php file from backend.
Can you please try moving the code to the top of the file after PHP opening tag?
Best regards,
Yigit
No its on top of the file and in the private field you find te whole content of our functions.php
Hi!
Can you please try changing code to following one
add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
function fix_single_post_title($args,$id)
{
if ( $args['title'] == 'Blog - Die aktuellsten Neuigkeiten' )
{
$args['title'] = get_the_title($id);
$args['link'] = get_permalink($id);
$args['heading'] = 'h1';
}
return $args;
}
Cheers!
Yigit
That worked.
Thanx!!!
kind regards Martin
PS: Maybe you should updatethat tipic in your documentation