Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
I'm using cloak url, it looks like this

Code: Select all
<cms:editable   name='product_link'  label='Downloadable File'  desc='Upload the file here'  type='file'/>


I'm calling variable product link in cloak_url

Code: Select all
<a href="<cms:cloak_url link='<cms:show product_link />'>">Test cloak url</a


And all i can get always it's "file not found", i tried to put force_download='1' and it's not working. Any suggestion?
Double quotes are necessary for code. Both variants are valid:
Code: Select all
<a href='<cms:cloak_url link="<cms:show product_link />" />'>Test cloak url</a>
<a href="<cms:cloak_url link=product_link />">Test cloak url</a>
trendoman wrote: Double quotes are necessary for code. Both variants are valid:
Code: Select all
<a href='<cms:cloak_url link="<cms:show product_link />" />'>Test cloak url</a>
<a href="<cms:cloak_url link=product_link />">Test cloak url</a>

Tnx!
3 posts Page 1 of 1
cron