Hi I´m trying the RC2 version downloaded from the post viewtopic.php?f=5&t=8981 and I think there is a little bug with the thumbnail tag. I made the upgrade from a previous version I was working on but now the <cms:thumbnail> tag is not working.
I´m using this code which worked on the previous version
but now with the RC2 version the page doesn´t display anything not even the <head> in source code but when I use the code like this:
it works just fine
I´m using this code which worked on the previous version
- Code: Select all
<cms:show_repeatable "images">
<cms:if k_count='1' >
<cms:if imagen>
<a href="<cms:show k_page_link/>">
<img src="<cms:thumbnail imagen width="700" height="450" />"
alt="<cms:show k_page_title/>" class="img-responsive thumbnail"/>
</a>
</cms:if>
</cms:if>
</cms:show_repeatable>
but now with the RC2 version the page doesn´t display anything not even the <head> in source code but when I use the code like this:
- Code: Select all
<cms:show_repeatable "images">
<cms:if k_count='1' >
<cms:if imagen>
<a href="<cms:show k_page_link/>">
<img src="<cms:show imagen/>" alt="<cms:show k_page_title/>"
class="img-responsive thumbnail"/>
</a>
</cms:if>
</cms:if>
</cms:show_repeatable>
it works just fine