Home › Forums › Iconic One Pro Support › Remove "Read more" from posts
- This topic has 4 replies, 2 voices, and was last updated 11 years, 5 months ago by
nicras.
- AuthorPosts
- September 24, 2013 at 9:53 am #810
nicras
ParticipantCan you tell me please how to remove the “Read more” button from posts at the startpage and instead have the whole article shown?
Regards
September 24, 2013 at 10:08 am #811Themonic-Support
KeymasterTo show full article instead of excerpts on home page:
Go to content.php line 52
<?php if ( is_home() || is_search() || is_category() || is_tag() || is_author() ) : // Display Excerpts for Search, home, category and tag pages ?>
Replace that line with
<?php if ( is_search() || is_category() || is_tag() || is_author() ) : // Display Excerpts for Search, category and tag pages ?>
Let me know if it works as you wanted.
September 24, 2013 at 10:39 am #812nicras
ParticipantThis worked perfectly, Thanks a lot!
One thing left: After this change the text starts under the featured image, befor it was around the image.September 24, 2013 at 12:18 pm #813Themonic-Support
KeymasterDo you want your featured image smaller and aligned to the left? try this:
Paste the following code in the custom.css or in the style.css of child theme
.attachment-post-thumbnail.wp-post-image { float: left; margin-bottom: 3%; margin-right: 2%; max-width: 50%; }
September 24, 2013 at 12:28 pm #814nicras
ParticipantYou’re great! This is exactly what I wanted it to look like.
- AuthorPosts
- You must be logged in to reply to this topic.