• Resolved Marianne Topping

    (@tullemomsemor)


    I love this theme and would like to use it, but I need the posts on front to be in full not just excerpts – it can not be done in settings – is there no way to work around this – maybe on a 1 colum layout?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Glad you like it! You need to do custom changes for this.

    The following changes should give you a start. They should be done with a child theme (Download a sample child theme in the Help dropdown top right in Theme Options).

    Relevant files for this change:
    – content.php
    – style.css
    – (single.php)

    Add this to your child theme’s style.css:

    .post-list .post, .post-list .page { width. 100%; }

    This changes from two articles per row to one.

    Next, copy content.php over to your child theme and modify:

    <?php the_excerpt(); ?>

    To:

    <?php the_content(); ?>

    This will give you the full content, which you can cut off where you wish with the standard more link.

    Then use single.php as a resource to copy code over from to content.php, if you wish to show post formats directly in the blog list and so on.

    Thread Starter Marianne Topping

    (@tullemomsemor)

    Thank you – sounds like a good Sunday past time 🙂

    Good luck with it! 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Post in full on frontpage’ is closed to new replies.