Forum for discussing general topics related to Couch.
2 posts Page 1 of 1
Hi, it is possible to do something like this?

Code: Select all
<cms:show_repeatable 'compressor_products'>
        <li class="table-row">
           <ul>
               <li><cms:show compressor_brand_name /></li>
               <li>
                    <cms:show_repeatable 'products_specification'>
                    <a>Link to specific pdf file1, Link to specific pdf file2, Link to specific pdf file3 .... </a>
                    </cms:show_repeatable>
               </li>
            </ul>
         </li>
</cms:show_repeatable>

also in same page products group will continue

<cms:show_repeatable 'aircondition_products'>
        <li class="table-row">
           <ul>
               <li><cms:show aircondition_brand_name /></li>
               <li>
                    <cms:show_repeatable 'products_specification'>
                    <a>Link to specific pdf file1, Link to specific pdf file2, Link to specific pdf file3 .... </a>
                    </cms:show_repeatable>
               </li>
            </ul>
         </li>
</cms:show_repeatable>




Simply I would like to achieve repeatable and editable regions as follow:

(editable -once)brand_name -> (editable)more than one pdf file
Embraco -> pdf specificationEmbraco1, pdf specificationEmbraco2, pdf specificationEmbraco3....
AtlasCompco -> pdf specificationAtlas1, pdf specificationAtlas2, pdf specificationAtlas3....

I tried clonable settings but without success. I have groupped some informations for better readability in admin but it does not help with repeatable region inside another repeatable region.
Hello Artemis,

I'm afraid but we cannot nest repeatable-regions within another repeatable-region.

That said, I think another way of structuring your data could be through regular cloned-pages.
Use a clonable template (say, named products.php), create two folders 'compressor' and 'air-conditioner' and define a repeatable-region of type 'file'.

You can now create a separate page for each product attaching multiple files to it.

Hope it helps.
2 posts Page 1 of 1