Skip to content

Instantly share code, notes, and snippets.

@dorian-davis
Created December 4, 2017 02:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dorian-davis/c3d85393d9e3ba5f960ed26a1d772d4c to your computer and use it in GitHub Desktop.
Save dorian-davis/c3d85393d9e3ba5f960ed26a1d772d4c to your computer and use it in GitHub Desktop.
Add Intercom to liquid powered thinkific themes
{% if Thinkific.current_user %}
<script>
window.intercomSettings = {
app_id: "YOUR_APP_ID",
name: Thinkific.current_user.full_name, // Full name
email: Thinkific.current_user.email, // Email address
alignment: 'right',
horizontal_padding: 20,
vertical_padding: 60
};
</script>
{% else %}
<script>
window.intercomSettings = {
app_id: "YOUR_APP_ID",
alignment: 'right',
horizontal_padding: 20,
vertical_padding: 60
};
</script>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment