loving the idea of the Bootstrap grid for organising input data and within a group, but having carefully followed the instructions when I try using the example here https://www.couchcms.com/forum/viewtopic.php?f=8&t=11023&hilit=BOOTSTRAP+in+admin+panel i.e. using the exact same code as in the example
I get the following php error
I can use the Bootstrap grid OK if I don't have rows within editable type of group ... any ideas?
- Code: Select all
<cms:editable name='grp_coordinates' label='Coordinates' type='group' >
<cms:editable name='test_row' type='row' order='1'>
<cms:editable name='lng' label='Longitude' type='text' class='col-xs-2' />
<cms:editable name='lat' label='Latitude' type='text' class='col-xs-2' />
</cms:editable>
<cms:editable name='test_row2' type='row' order='2'>
<cms:editable name='directions' label='Directions' type='text' class='col-xs-4' />
</cms:editable>
</cms:editable>
I get the following php error
Fatal error: Maximum function nesting level of '100' reached, aborting!
I can use the Bootstrap grid OK if I don't have rows within editable type of group ... any ideas?