I am trying to:
display a word according to conditional toolset
i tried;
[wpv-conditional if="( '[wpv-post-taxonomy type='tipo-de-material' format="name"]' eq 'video' )"]***video***[/wpv-conditional]
while 'tipo-de-material' is a custom types category
if i display [wpv-post-taxonomy type='tipo-de-material' format="name"] it shows me "video" in the right way but the conditional always return false...
Hi,
Can you try this format:
[wpv-conditional if="( CONTAINS(#(tipo-de-material),'video') )"]Video[/wpv-conditional]
My issue is resolved now. Thank you!
It was a issue with the uppercase ...
thanks anyway to show me the "contains" condition function.