Problems, need help? Have a tip or advice? Post it here.
6 posts Page 1 of 1
Hi all,

Has anyone else noticed the Repeatable Regions acting buggy when wanting to add images? For example, when I click on the "Add a Row", I have 3 fields. A link, a title, and then an image (browse server). Right after I add a row, I'm unable to browse the server for an image, but if I save my page and then come back to the rows I can add the images.

It's not a huge problem, just a little annoying when I'm in the flow of things.

Thanks!

*EDIT* Sorry, forgot to add that this in the new version, 2.0 (20160523)
Hi,

Could you please post the exact definition of the repeatable-region?
I'll try to use it on my system to see if I can duplicate the issue.

Thanks.
Hi KK,

This is what I'm using in the template code:

<cms:template title="Portfolio" order="17">
<cms:repeatable name='portfolio_items' label='Portfolio Items' >
<cms:editable type='text' label='Portfolio Link' name='portfolio_link' col_width='300' />
<cms:editable type='text' label='Portfolio Name' name='portfolio_name' col_width='300' />
<cms:editable type='image' label='Portfolio Image' name='portfolio_img' show_preview='1' preview_width='200' />
</cms:repeatable>
</cms:template>


And this is what I'm using for the page display:

<cms:show_repeatable "portfolio_items" startcount="0">
<div class="col s12 m4 l4 portfolio-item">
<div class="hovereffect">
<img class="img-responsive" src="<cms:show portfolio_img />">
<div class="overlay">
<h2><cms:show portfolio_name /></h2>
<p>
<a href="portfolio-work/<cms:show portfolio_link />">SHOW MORE</a>
</p>
</div>
</div>
</div>
</cms:show_repeatable>

Thanks!
Thanks.

I tested your code and, yes, I can see the problem.
Seems to be a bug. I'll try to fix it as soon as possible.

Thanks for the heads-up :)
Hi @webinke,

We have made a new commit into our GitHub repository -
https://github.com/CouchCMS/CouchCMS/co ... 8e36fd15d1

Please use the two modified templates from the commit and that should rectify the problem you reported.

Hope it helps. Do let us know.

Thanks again :)
Hi KK,

I can confirm that the issue is fixed now.

Thanks!
6 posts Page 1 of 1