Hi Team of Kriesi,
i have a minor question. Is it possible to hide the | or “|” charater – which is automaticly generated to seperate subpages – if you are on the frontpage? So only for the frontpage i would like to hide it.
Ah another question. Funnly in chinese thinking there is also a more or less negative cultural connotation to that character – another project i im working on. Is it possible to change it?
Gruß Sebastian.
Hey webfordj!
Thank you for visiting the support forum!
Please add this on functions.php to remove the separator:
add_filter('avf_title_tag', 'avf_change_title_tag');
function avf_change_title_tag($title) {
$title = get_bloginfo('name') . ' ';
$title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false);
return $title;
}
Cheers!
Ismael
thank you very much. and again a super and quick support. :)