Error with tagline

Continuing the discussion from Change the site identity tag line:

Hi! It did not work your advice and the - is not written in Settings > General > Site title text field. Could you give me any other recommendation of what to do?

Thanks in advance,
Marina.

Hi Marina,

Please install and activate the child theme and login through FTP then edit the functions.php then add this code:

if ( ! function_exists( 'x_title_separator' ) ) :
  function x_title_separator( $sep ) {

    $sep = " ";

    return $sep;

  }

  add_filter( 'document_title_separator', 'x_title_separator' );
endif;

Hope this helps.

Hi!
Perfect, it worked.

Thank you so much,
Marina.

You’re must welcome,

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.