I have some long articles. I’d like to use field pagination but I need to retain structure i.e.
I have 2 fields, resource_summary and resource_content which I want to be able to display:
<h2>Summary</h2>
<p>{resource_summary}</p>
<h2>Content</h2>
<p>{resource_content}The trouble is that the {multifield only spits out the field itself and the {current_page} variable which could be used to test and take action is only available with the {paginate} tag.
Have I missed something or is there another way of achieving this?