st
, short for session test.?st=developer
or ?st=marketer
etc. and you can custom curate any experience you want to deliver.$_variable = 'hello world'
. Note the $_
denotes the variable a session variable, where are variable $
without the _
underscore is only available in a single page load.loader
view. From the Code Editor in your Satellite, open the loader
view file, and enter this line of code:{{$_sesvar = 'marketers'}}
, and then start targeting your language to marketers.https://mydomain.com/page/?st=developer
we are passing the value developer
and capturing that value into our session variable. With an if
statement, we are going to check the session variable's value against our desired match developer
. If it's a match, we will show one type of content, otherwise we will show our default content. It's quick to implement, let's take a look at the code.