This guide shows you how to add Heyo to your Blogger blog.
<script src="https://heyo.so/embed/script" defer data-project-id="YOUR_PROJECT_ID"></script>
The chat widget will work regardless of where you place the gadget, but for best practice:
Click Save arrangement and the chat will appear on your blog!
For more advanced users:
</head> tag</head>:<script src="https://heyo.so/embed/script" defer data-project-id="YOUR_PROJECT_ID"></script>
Using template conditions:
<script src="https://heyo.so/embed/script" defer data-project-id="YOUR_PROJECT_ID"></script>
<b:if cond='data:view.isPost'>
<!-- Chat will show on blog posts -->
</b:if>
<b:if cond='data:view.isPage'>
<style>
/* Hide chat on static pages */
#heyo-widget-button {
display: none !important;
}
</style>
</b:if>
Connect with readers who have questions about your blog posts:
Help readers with affiliate product questions:
Convert readers into clients:
Add to your HTML/JavaScript gadget or template:
<style>
#heyo-widget-button {
bottom: 20px !important;
right: 20px !important;
}
/* Mobile adjustments */
@media (max-width: 768px) {
#heyo-widget-button {
bottom: 80px !important;
}
}
</style>
If you want to hide chat on certain posts, add this custom CSS using Blogger's post editor:
<style>
#heyo-widget-button {
display: none !important;
}
</style>
</head>Heyo works alongside:
If using Blogger's Dynamic Views templates:
For mobile-specific styling:
<b:if cond='data:blog.isMobile'>
<style>
#heyo-widget-button {
bottom: 80px !important;
}
</style>
</b:if>