IMHO, best practice is to have those variables (search terms, number of
results, etc) in the data layer of your search results page. Then you
set them accordingly in your s.t() call on the search results page.
Using this approach, you remove the need for the s.tl() call.If you
can't do the data layer, you can create a rule to store values in data
elements/sessionstorage. On your search results page, call and set those
values together with the s.t() call. This is more messy but ensures that
you o...