Skip to content

Instantly share code, notes, and snippets.

@hmowais
Created December 18, 2024 15:41
Show Gist options
  • Save hmowais/b3ed913bca1b76531f9a026ee815f3f5 to your computer and use it in GitHub Desktop.
Save hmowais/b3ed913bca1b76531f9a026ee815f3f5 to your computer and use it in GitHub Desktop.
UserBack Script
<?php
function add_userback_script() {
?>
<script>
window.Userback = window.Userback || {};
Userback.access_token = 'A-7VARVgBtpJtf80JEeZRR9LRpK';
// identify your logged-in users (optional)
Userback.user_data = {
id: "123456", // example data
info: {
name: "someone", // example data
email: "[email protected]" // example data
}
};
(function(d) {
var s = d.createElement('script');s.async = true;s.src = 'https://static.userback.io/widget/v1.js';
(d.head || d.body).appendChild(s);
})(document);
</script>
<?php
}
add_action('wp_footer', 'add_userback_script');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment