Skip to main content
Solved

Browse Abandonment Flow not using Product View as a trigger

  • October 7, 2024
  • 1 reply
  • 22 views

clairebeaumont
Active Contributor I
Forum|alt.badge.img+5

Hey, 
We have browse abandonment flows set up for products and this is working great. We are using Shopify. 


We have an in-store service, which is bike fitting, and a customer can book an appointment time online, but we don't take payment until they have had an assessment in the store. This is because sometimes we don't charge because a small tweak is needed or because their bike is totally unsuitable and no amount of adjustment will be suitable. The service is highly specialist so the best thing is to charge people in the store after the service. 

Is it possible to send a browse abandonment email based on someone's behaviour like a page view (but not a product page view) and how would I put these people into a flow? 
 

Thanks, CJ

Best answer by bluesnapper

Hi @clairebeaumont 

You can achieve this with a custom event. This JS on your target page should work:

<script type="text/javascript">
   var _learnq = _learnq || [];
    _learnq.push(["track", "BookingPageView" ]);
</script>

That will create a custom event for a profile called ‘BookingPageView’ when the page is viewed. That custom event can be used as a trigger for a flow.

More info here: https://developers.klaviyo.com/en/v1-2/docs/custom-event-tracking

Hope that helps

Andy

View original
Did this topic or the replies in the thread help you find an answer to your question?

1 reply

bluesnapper
Partner
Forum|alt.badge.img+45
  • Champion & Partner
  • 737 replies
  • Answer
  • October 8, 2024

Hi @clairebeaumont 

You can achieve this with a custom event. This JS on your target page should work:

<script type="text/javascript">
   var _learnq = _learnq || [];
    _learnq.push(["track", "BookingPageView" ]);
</script>

That will create a custom event for a profile called ‘BookingPageView’ when the page is viewed. That custom event can be used as a trigger for a flow.

More info here: https://developers.klaviyo.com/en/v1-2/docs/custom-event-tracking

Hope that helps

Andy