Solved

How to implement "Join the Waitlist" on the product page with Klaviyo

  • 22 April 2024
  • 1 reply
  • 40 views

Badge

Hi, 

We want to have product in our store with the button “Join the Waitlist”. How can we implement it with Klaviyo? 

icon

Best answer by bluesnapper 22 April 2024, 11:47

View original

1 reply

Userlevel 7
Badge +37

Welcome to the community @Angus 

If you're on Shopify, the easiest way is to add the back-in-stock feature. This will display a web button on any product page where the product is out of stock.

Clicking on that button opens a pop-up where they can register their interest in the product. When it's back in stock (or launched as in your case), Klaviyo will automatically send an email to notify those contacts. More info on that here: https://help.klaviyo.com/hc/en-us/articles/360001895651 

If you're not on Shopify, or want greater control over the form and notifications, you achieve this as follows in Klaviyo:

  1. Create a list for your product waitlist
  2. Create a form and set the submit button to submit contacts to your waitlist. Also under the form's display settings, set to 'Only on custom trigger'. At the bottom of that configuration panel grab the form ID (see below).
  3. Create your web button “Join the waitlist” on the product page and add the following code snippet to that button (replace form ID with your form ID):

<script type="text/javascript">
    document.querySelector('.klaviyo_form_trigger').addEventListener('click', function (){
        window._klOnsite = window._klOnsite || []; 
        window._klOnsite.push(['openForm', 'form ID']);
    });
</script>

When someone clicks your web button, the form will display, they enter their details, and those get pushed to your waitlist.

I hope that helps, but let me know if you have any questions.

Andy

Form ID


 

Reply