Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
have you tried assigning the result of oxcontent ident="oxhomepagefootertextblock" to a variable within smarty then doing {if myvar}{/if} – Prisoner Jan 4 at 9:29
this did work for me. thank you – user1731323 Jan 4 at 10:50
I'll add it as an answer for people looking for this in the future. – Prisoner Jan 4 at 10:59
@user1731323 you can select his answer – Sahal Jan 4 at 11:02
How is the syntax for assigning a function result to a var? – shredding Mar 21 at 12:27

1 Answer

You should be able to assign the result of oxcontent ident="oxhomepagefootertextblock" to a variable in smarty (reference). You should then be able to check it using {if myvar}{/if}.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.