Problems, need help? Have a tip or advice? Post it here.
6 posts Page 1 of 1
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
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
Hi,

The code for cms:thumbnail has not changed one bit between v1.4. and v1.4.5RC2.
Anyway, I still tested out your code and it is working just fine for me.

You'll have to find out what else could be going wrong.
Please make sure that GD library is functioning properly on your server.
Thanks kk I´ll check
I should have also added - please also check the permissions on the upload folder. Try setting it to 777 and see if that helps.
Already fixed it. I uploaded everything again but I think it was the permissions on the upload folder.. Anyway its working already.

As always thanks for the excellent support KK...
You are welcome :)
6 posts Page 1 of 1