Avatar
Vladimir Mullagaliyev co-founder
  • Answered

Hello Pavel,

You can add some custom text via CustomJS.

Here is some examples https://feedback.userecho.com/en/knowledge-bases/10/articles/10530-custom-js-script-on-your-page-and-tricks-with-customization


Please take a look on to this one:

Here is an example how to add some text to the topic popup.

<script language="javascript">
initqueue.push(function(){
    $(window).on('uetopicpopuploaded', function () {
        $('#module_add_topic .modal-body').prepend('<div style="background-color: #ffdd99;padding:10px;margin-bottom:10px"><strong>Test message in the topic popup</div>');
    });
});
</script>

Feel free to contact us via Heldesk form if you need any help with that.