HI @infiknit,
It looks like the theme just generates an excerpt, regardless of the reading setting that you have specified.
What you can do is increase the excerpt lengths to display the full text, however the HTML will be stripped from the excerpt – so if you have a YouTube embed, a slider, images etc. they won’t display.
You can add the following little code snippet into an MU plugin that you create which will increase the excerpt length to 300 words.
add_filter( 'excerpt_length', function($length) {
return 300;
} );
If your content is longer than that, you can bump the value up to a larger number.
We can certainly take a look for a future release to see what we can do to allow for the full post content to display based on that setting. I’ve created an issue on our Github issue tracker so that I can track this moving forward:
https://github.com/godaddy/wp-mins-theme/issues/60