Articles on: My Contacts

How can I automatically set user nickname?

If you are using Crisp on a website where users are authenticated, you may want to set their nickname so that they don't have to specify it when they start a chat with you.

This method uses the Crisp JavaScript API, that you can call from your own code. Given that you know the authenticated user's nickname from your code, you'll be able to set it for the Crisp chatbox.

Crisp lets you easily handle your lead and contact management inside one tool.

Here's how you would proceed to set the visitor's nickname:

// Feed this call with your own internal nickname data.
$crisp.push(["set", "user:nickname", ["John Doe"]]);


Let's say you are using PHP, then use.

<script>
  $crisp.push(["set", "user:nickname", ["<?php echo $user_nickname; ?>"]]);
</script>

(assuming $user_nickname is your user fullname.).

You can also combine this with your user email

<script>
  $crisp.push(["set", "user:email", ["<?php echo $user_email; ?>"]]);
  $crisp.push(["set", "user:nickname", ["<?php echo $user_nickname; ?>"]]);
</script>


Here's how you would proceed to get the visitor's nickname:

// Read the value of the visitor nickname you previously set.
var visitor_nickname = $crisp.get("user:nickname");


Want to know more about the $crisp interface? Read: How to use $crisp Javascript SDK?

Updated on: 13/06/2022

Was this article helpful?

Share your feedback

Cancel

Thank you!