Tagged: x
-
AuthorPosts
-
March 24, 2016 at 1:18 am #850699
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.
March 24, 2016 at 1:27 am #850711Hi 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!
March 24, 2016 at 1:35 am #850716Thank 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.
March 24, 2016 at 1:37 am #850720Hi 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!
March 24, 2016 at 1:54 am #850730Goodness! 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.
March 24, 2016 at 2:03 am #850739Hi,
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
-
AuthorPosts