Forum for discussing general topics related to Couch.
4 posts Page 1 of 1
I have a problem with admin panel, I find it pretty annoying...

Image

As you can see, It got 2 repeatable regions, actually I already delete one them, but they just won't disappear in admin panel.

Code: Select all
<cms:template title='Products' clonable='1' dynamic_folders='1' gallery='1' order='5'>

  <cms:editable
      name="gg_image"
      label="Image"
      desc="Upload your main image here"
      show_preview="1"
      height="600"
      preview_height="200"
      type="image"
   />
   
   <cms:editable
    name        = "gg_thumb"
    assoc_field = "gg_image"
    label       = "CMS Thumbnail Image"
    desc        = "Only used within the admin panel"
    width       = "115"
    height      = "115"
    enforce_max = "1"
    type        = "thumbnail"
   />
   
   
    <cms:editable
   name        = "grid_thumb"
   assoc_field = "gg_image"
   label       = "Grid Thumbnail Image"
   width       = "640"
   height      = "400"
   enforce_max = "1"
   type        = "thumbnail"
   />
   
    <cms:editable
      name="related_selection"
      label="Got Related Products?"
      desc="Select one from these"
      opt_values='No | Yes'
      type='dropdown'
    />
   
    <cms:repeatable name='related_products2' label='Photos' desc="Related Products" >
    <cms:editable type='image' name='related_images2' label='Photo' show_preview='1' preview_width='150' input_width='100' col_width='150' enforce_max='0' height="600" />
    <cms:editable type='text' label='Product Label' name='pro_label2' input_width='100' col_width='150' />
</cms:repeatable>

<cms:editable name='gallery_css' type='message'>


As you can see, only one repeatable regions. How can I make the extra field go away?
nsy :) As super-admin visit this page, not just template. Couch will sense the absent editable and you'll be able to delete it. ;)
To expand on what @trendoman rightly pointed out - please visit the page-view of the template. One easy way of doing this is to click on the magnifying glass icon next to any cloned page of that template from the admin panel.
Thanks. :D :D :D :D
4 posts Page 1 of 1