[Support request] Is it possible to get this text to be centered in the header?

Home Forums Support [Support request] Is it possible to get this text to be centered in the header?

Home Forums Support Is it possible to get this text to be centered in the header?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1407506
    roy

    would it be possible to get the part after the – to be on the bottom?

    #1407631
    David
    Staff
    Customer Support

    Hi there,

    we can try str_replace on the post hero title with this PHP snippet:

    add_filter( 'generate_page_hero_post_title', function( $title ) {
        $string = "-";
        $replace = "- <br />";
        $title = str_replace($string, $replace, get_the_title() );
    	
        return $title;
    
    } );
    #1410873
    roy

    Hello David, please bear with me!

    I’m a little confused, I am at the theme editor, is this where I put this snippet?

    Which theme file do I put it under to test if it works?

    Thanks again, sorry about my ignorance

    #1410912
    David
    Staff
    Customer Support

    Sorry forgot to add this doc:

    https://docs.generatepress.com/article/adding-php/

    Which explains how to add PHP

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.