i have a smarty custom function which I have to call like this
[{ oxcontent ident="oxhomepagefootertextblock" }]
Now I have to check if the function returns a true or a value. I'm trying to use an if condition like this:
[{if oxcontent ident="oxhomepagefootertextblock"}]
I'm true
[{/if}]
Although there's an similiar example here (http://forum.oxid-esales.com/showthread.php?t=782#post4754) smarty stops the execution.
Can somebody tell me what the right syntax is?
Thanks in advance

oxcontent ident="oxhomepagefootertextblock"to a variable within smarty then doing{if myvar}{/if}– Prisoner Jan 4 at 9:29