Hi,
The map_enabled parameter should be passed as a boolean value, but you have configured it as a string.
Consider that, if you only want to show the widget, the target parameter can be configured as 'widget'.
The working code is:
<script type="text/javascript">
window.now4real = window.now4real || {};
now4real.config = {
target: 'widget',
widget: {
map_enabled: false,
color_external_background: '#8C0D73', color_external_text: '#FFF',
color_internal_background: '#8C0D73', color_internal_text: '#FFF',
// logo_url: 'https://example.com/logo.png', // premium feature
align: 'right',
},
scope: 'site'
};
(function () { var n4r = document.createElement('script'); n4r.type = 'text/javascript'; n4r.async = true; n4r.src = 'https://cdn.now4real.com/now4real.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(n4r, s); })();
</script>