Using SmartText with Variations

You can use both insert and replace strategies with Variations, by passing in an additional query parameter to set the variation

How to use variations in Simple Text fields

  1. You must first supply a SmartLink that contains the variation parameter to your user either by sharing directly or through email. Once that link is clicked, we save information in their browser so we can use this variation in the future

  2. Inside your SmartTags, be sure to include text-2 and text-3 attributes to indicate the alternative SmartText

<smart text="Hey there {{first_name}}, " 
           text-2="{{first_name}}, " 
           text-3="{{first_name}} Don't miss this!! "/>Join Our Free Workshop
           
https://yoursite.thinkific.com?v=1 => Hey there Sammie, Join Our Free Workshop

https://yoursite.thinkific.com?v=2 => Sammie, Join Our Free Workshop

https://yoursite.thinkific.com?v=3 => Sammie Don't miss this!!  Join Our Free Workshop

Once a Variation version is passed in via a query parameter, it will remain the the users browser storage until they clear it (or it is changed by you with another link). This is helpful when you want to test out different page content for types of users

How to use variations in Rich Text fields

<span class="smarttext" data-text="Hey there {{first_name}}, " 
           data-text-2="{{first_name}}, " 
           data-text-3="{{first_name}} Don't miss this!! ">.</span>
           Join Our Free Workshop
           
https://yoursite.thinkific.com?v=1 => Hey there Sammie, Join Our Free Workshop

https://yoursite.thinkific.com?v=2 => Sammie, Join Our Free Workshop

https://yoursite.thinkific.com?v=3 => Sammie Don't miss this!!  Join Our Free Workshop

Last updated