• Check the dash after the title of the site:

    All about headphones from true audiophiles

    It seems Cenote wants me to write a short description excepts the General title (General Settings)

    How do i remove this dash at the end of the title?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter soa0611

    (@soa0611)

    + homepage posts dispaying correctly only in Chrome browser
    on Firefox and Safari it is bugged, just check my homepage

    Hi @soa0611,

    To get the result as you desired, you must create the child theme. You can get knowledge about a child theme and its process to create, from the link below.

    https://themegrill.com/blog/tutorial-creating-wordpress-child-theme/

    Now that if you’ve created the child theme, then add the below code in a file name functions.php.

    add_filter( 'document_title_separator', 'cyb_document_title_separator' );
    function cyb_document_title_separator( $sep ) {
       $sep = ' ';
       return $sep;
    }

    And, displaying of homepage posts is fine on other browsers too.

    Thanks and Regards,
    Ankit

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can’t remove Dash in my title.’ is closed to new replies.