Add text hidden from homepage but shows in modal/post page.
Pretty straight forward. It would be possible to have a chunk of text under a photo which does not show on the main posts feed but when the post opens, the text shown under. To do this you will need to:
1. Copy the text below and paste into Custom CSS (Customize > Advanced Options).
body.index-page #stash-ants .post .page-only {
display:none;
}
2. Edit post in HTML mode and add copy the code below. Copy and paste the line <p></p> to create new paragraphs.
<div class="page-only">
<p>text here</p>
</div>