I have the following code:
That doesn't work. I had to change it to:
For it to work.
Just wanted to point this out cause I don't think it's meant to be this way.
Thanks!
- Code: Select all
<cms:editable name='main_video' label='YouTube Embed Code' type='textarea' no_xss_check='1' />
<cms:if "<cms:not_empty main_video />" >
Do something...
</cms:if>
That doesn't work. I had to change it to:
- Code: Select all
<cms:if main_video>
Do something...
</cms:if>
For it to work.
Just wanted to point this out cause I don't think it's meant to be this way.
Thanks!