Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #850699

    lovell88
    Participant

    Hey support team!

    My website is carsidecharity.org. If you navigate to the blog posts page, you’ll see the page in question.

    You will see that there is one blog post on that page. What I am wanting to do is have it where the images show up on this page and all the text is displayed up to the “Read More” tag. I have had this easily on other WordPress pages and for the life of me, I can’t figure out how to do that in this one. Right now it just shows a short amount of text and no picture.

    Any ideas?

    Thanks in advance for the help and sorry if the answer is super obvious.

    #850711

    Rupok
    Member

    Hi there,

    Thanks for writing in! It seems you didn’t add Featured Image for your post. Kindly add Features Image and you will get the look like this demo – http://theme.co/x/demo/renew/2/blog/

    Hope this helps.

    Cheers!

    #850716

    lovell88
    Participant

    Thank you for the reply. Unfortunately, that is not what I am looking for. I want it to show all of the post, regardless of what is feature. Additionally, the demo you link is not showing all of the blog text.

    Look at another one of my sites for an example: Automyth.net. That will give you an example of what I am looking for.

    #850720

    Zeshan
    Member

    Hi there,

    Thanks for writing back!

    If you want to show complete blog post, enable “Full Post Content on Index” under Blog > Content in the Customizer.

    Thank you!

    #850730

    lovell88
    Participant

    Goodness! So frustrating when the answer is so dang simple. Thanks a ton for the help.

    While I have you, you will notice that the site title in the browser is “Carside Charity |”. See attached picture. I don’t want to have a tagline and have that field blank. Do you know how to get rid of the “|”? I haven’t find anything online.

    #850739

    Paul R
    Moderator

    Hi,

    To remove it, you can add this in your child theme’s functions.php file.

    
    function x_wp_title( $title ) {
    
        if ( is_front_page() ) {
          return get_bloginfo( 'name' ) . '  ' . get_bloginfo( 'description' );
        } elseif ( is_feed() ) {
          return ' | RSS Feed';
        } else {
          return trim( $title ) . ' | ' . get_bloginfo( 'name' ); 
        }
    
      }
      add_filter( 'wp_title', 'x_wp_title' );
    

    Hope that helps