@KK!
Yeah, only I need to change display order on front-end. In CMS all can be in old way
Yeah, only I need to change display order on front-end. In CMS all can be in old way

<cms:show_repeatable 'test' >
<h3>
<cms:show my_text />
</h3>
</cms:show_repeatable>
<cms:show_repeatable 'test' >
<cms:capture into='my_buffer' global='1' >
<h3>
<cms:show my_text />
</h3>
<cms:show my_buffer />
</cms:capture>
</cms:show_repeatable>
<cms:show my_buffer />
The important thing is the next statement -<cms:capture into='my_buffer' global='1' >
<h3>
<cms:show my_text />
</h3>
..
</cms:capture>
Here we add to the buffer all its *previous contents*. This way we concatenate the old rows to the new one just fetched. This essentially reverses the order of the rows.<cms:capture into='my_buffer' global='1' >
<h3>
<cms:show my_text />
</h3>
<cms:show my_buffer />
</cms:capture>
<cms:show my_buffer />