So I want to have on the profiles of every member a sort of image/award showing up based on how many months/years they are registered members.
I have the following awards: 6 months, 1 Year, 3 Years, 5 Years, 7 Years and 10 Years and I want to display either of them based on how lond they have been a member.
In the following I will use the example of the 6 months award:
So what I did is create an image field for each award and in the
Profile Value Layout of each field I added the html with the source of the image like this:
Code:
<div class="award-display"><img title="6 Months of Membership" src="/images/awards/6-months-image.png" /></div>
Then I went to
Integrations > CB Conditional and in the
Display I chose
Field Conditional Show.
In the Conditions i selected the following :
Field : Member Since (registerDate)
Operator : Greater than or equal
Value : 182 (I assume that it calculates the days between current date and date of registration)
and I added an AND row with the following:
Field : Member Since (registerDate)
Operator : Less than
Value : 365
So based on the above the expected result is if
Member Since field is between 6 months (182 days) AND less than 1 year (365 days), then it should display the award, else hide it.
The problem is it displays it to all members despite some being members for more than a year.
Any ideas?