Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
Ive set up a page on my website that allows a logged in user to add an image to the web page, it works fine as far as uploading goes and showing the image on the website, however there is a minor problem.. on top of the image it shows the exact location (url) of the image, it looks ugly. How can I remove this feature of couch?

example: http://coordinatedseniorservices.com/site/calendar.php

code I am using:

Code: Select all
<cms:editable
        name='calendar_image'
        label='Image'
        desc='Upload most recent calendar image here'
        type='image'
        width='625'
        show_preview='1'
      />
      <img src="<cms:show calendar_image />" ALT="Coordinated Senior Services Monthly Calendar" />
Please add hidden='1' to the editable region's definition (or better still move the definition to within <cms:template> </cms:template> block).
2 posts Page 1 of 1