1. Create a new Product under Memberships / Courses

Untitled

2. Add a new category

3. Add “Custom JS”

Click on the Details tab and scroll down to the Advanced section.

Untitled

Click on the down arrow to open the Advanced settings. Paste the following javascript code into the “Custom JS” text box and Save.

var checkExist = setInterval(function() {
       if (document.getElementById('sentiyen-iframe-wrapper')) {
          var script = document.createElement('script');
          script.src = '<https://www.sentiyen.com/embed/embed.js>'; // Replace with your JavaScript file URL
          document.head.appendChild(script);

          clearInterval(checkExist);
       }
    }, 250);

4. Create a new post

In the body of of the post, click the <> button in the editor toolbar to bring up the “Source Code” editor.

Untitled

Paste the following code. Your CHANNEL_ID will be provided to you by Sentiyen and available in the admin panel.