Have you tried the sidebar widget that comes with the plugin? It should do just what described.
If you don’t want to use our wordpress plugin, but wan’t to use sidebar, you could add the following code:
<div id='bublaa-sidebar'></div>
<style>
#bublaa-sidebar {
height: 300px;
width: 100%;
min-height: 300px;
max-height: 600px;
}
</style>
<script type='text/javascript'>
window.bublaa = {
config : {
bubble : 'add the name of your bubble here!',
serviceHost: 'https://bublaa.com',
embeddedUrl: 'add the url of your embedded bubble here!'
}
};
(function() {
var b = document.createElement('script'); b.type = 'text/javascript'; b.async = true;
b.src = 'https://bublaa.com/build/sidebar.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(b, s);
})();
</script>
Remember to edit the name or your bubble and url of your embedded bubble.
Let us know if any of this isn’t working for you!