Hi Melanie,
So I installed your Theme on my test site, looked for some settings and there you cannot have whole text on front page.
It would mean to redesign some basics of the Theme.
From my point of view, it is OK to have Excerpts on front page.
Anyway:
You can have one last Post to be displayed on Front page all the text.
You have to have Child Theme for PIXOVA THEME set.
Then Copy over FTP your StaticFrontPage.php into the child theme folder
SO YOU SHOULD HAVE: style.css, function.php and StaticFrontPage.php in the child theme.
Reason is that all the changes you do to any PHP CSS, are saved in child theme and are not lost due Theme Update
Open that new StaticFrontPage.php file and go to the row No. : 70
There you can see this code:
echo apply_filters('the_content', substr(get_the_content(), 0, 200) );
change the No 200 to something big, so u are sure it covers lenth of your posts.
I did this:
echo apply_filters('the_content', substr(get_the_content(), 0, 20000) );
and it is working fine.
Then
Go to your Dashboard/Settings/Reading
SET as this:
Blog pages show at most – 1
Syndication feeds show the most recent – 1
For each article in a feed, show – set to Full Text
…..and save changes.
Instead of another post you should have pagination appeared.
…..is there another template that the blog template uses apart from ‘template-parts/content’ which seems to have no width restrictions…….
As I took a look to the background, there is no other template for Posts.
For some reason I see your front page like this
Maybe, before you start do Above, set the theme from the scratch, to be sure, there is no bad CSS or something.
You have set marging like this for some reason:
@media (min-width: 992px)
.col-md-offset-4 {
margin-left: 33.33333333%;
}
@media (min-width: 768px)
.col-sm-offset-3 {
margin-left: 25%;
}
There should be 0 margin I think
So this is for now, let me know How You are doing.
Cheers
TR