Hi,
I use CB:If in a article who test a progress field.
Code:
[cb:if cb_informations_interne_n2="0"]
[cb:if cb_etapes_statut!="0"]
[cb:if cb_profil_progression="100"]
<div class="text-center">
#Something
</div>
[cb:else]
<div class="alert alert-danger">
Your profile isn't complete ([cb_profil_progression]%).<br />
</div>
[/cb:else][/cb:if]
[cb:else]
#Something Else
[/cb:else][/cb:if]
[/cb:if]
But when cb_informations_interne_n2 is equal to 1 or 2, i've the message "You profile isn't complete (100%)"
2 questions :
- Why if cb_informations_interne_n2 is > 0 we enter in and just go to the end ?
- Why if cb_informations_interne_n2 is > 0 and cb_profil_progression = 100, we have the message who need only appear when cb_profil_progression is != 100 ?
This problem is only present when cb_informations_interne_n2 isn't 0.
Thanks