Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #261400

    Hi Team of Kriesi,
    i have a minor question. Is it possible to hide the &#124 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.

    example

    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.

    • This topic was modified 10 years, 8 months ago by webfordj.
    #261575

    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

    #261812

    thank you very much. and again a super and quick support. :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Enfold Frontpage Title with &#124 or "|" Character’ is closed to new replies.