I was adding a repeatable textarea field and I duplicate-named it, wiping the content of the original field. I want to recover the field content and I can download any table from an SQL backup but I have NO idea where the data will be.
What I am looking for is the text contents of a textarea field in a repeating region called subSec3Content in the setup below:
Where should I look?
I'm not trying to restore the database - just recover the content.
Thanks!
What I am looking for is the text contents of a textarea field in a repeating region called subSec3Content in the setup below:
- Code: Select all
<cms:editable type='group' name='sec3' label='Section 3' desc='Add as many as needed and select six to show' order='5'/>
<cms:editable type='text' name='sec3Title' label='Title' group='sec3' order='1'/>
<cms:editable type='text' name='sec3MenuTitle' label='Menu Title' group='sec3' order='2'/>
<cms:repeatable name='sec3Content' label='Section 3 Content' group="sec3" order='3'>
<cms:editable type='image' name='subSec3Image' label='Image' width='300' show_preview='1' preview_width='120'/>
<cms:editable type='textarea' col_width='100px' name='subSec3Video' label='video'/>
<cms:editable type='textarea' name='subSec3Content' label='content'/>
<cms:editable opt_values='Show' type='checkbox' col_width='30px' name='subSec3Show' label='Show'/>
</cms:repeatable>
Where should I look?
I'm not trying to restore the database - just recover the content.
Thanks!