Hi Guys,
Is there a way of removing “|” (its a pipe) in the title as it’s automatically being pulled in as it’s blank.
Cheers
Carl
Hi Animationink!
Insert this code into the child theme functions.php or enfold/functions.php file:
add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2);
function avia_change_title_tag($title, $wptitle)
{
$title = str_replace('|', "", $title);
return $title;
}
Regards,
Peter
This work, Thanks dude.