Use a CB Query Field and condition against it with an IF substitution.
Please Log in or Create an account to join the conversation.
It's just a counter so you'd condition against the count. Example as follows.That sounds like a good idea! What would the IF Substitution have to say in order to condition the 4 lessons within a permission to show up one at the time?
Ensure CB Query Field is installed then for "Type" select "Query" then under Parameters > Query place the SQL provided in my previous reply with PLAN_ID_HERE replaced by your actual plan id to the "Query" parameter. Verify on their profile it displays the correct number of renewals. If it does you can move it to a tab in a not shown on profile position so it won't actually be visible then start using it in your IF substitutions.Also. How exactly do I setup the field?
Please Log in or Create an account to join the conversation.
[cb:if cb_subscount>="4"]I've renewed 4 or more times. [/cb:if]
Please Log in or Create an account to join the conversation.
Subscriber Pays. Subscriber gets [month 1] access.
Subscriber Cancels: Subscriber keeps [month 1] access.
Subscriber Renews: Subscriber gets [month 2] access.
Subscription Expires: Subscriber keeps [month 2] access.
Please Log in or Create an account to join the conversation.
If your plan is a month by month plan the counter will increment every month. This means all you have to do is the following.
[cb:if cb_subscount>="1"]Lesson 1[/cb:if]
[cb:if cb_subscount>="2"]Lesson 2[/cb:if]
[cb:if cb_subscount>="3"]Lesson 3[/cb:if]
[cb:if cb_subscount>="4"]Lesson 4[/cb:if]
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.