If you know javascript and want the easiest way to do this , you can :
Suppose you want the chatroom to load in a page inside the div with id myChatroom
Run the following code , after freichat has been loaded ,
var chatroom = jQuery('.frei_chatroom-content').clone();
jQuery('#myChatroom').append(chatroom); // your DIV here
chatroom.show();
jQuery('#dc-slick-9').remove();
That's it . Let us know if you have any problems .
If you know javascript and want the easiest way to do this , you can :
Suppose you want the chatroom to load in a page inside the div with id `myChatroom`
Run the following code , after freichat has been loaded ,
```
var chatroom = jQuery('.frei_chatroom-content').clone();
jQuery('#myChatroom').append(chatroom); // your DIV here
chatroom.show();
jQuery('#dc-slick-9').remove();
```
That's it . Let us know if you have any problems .
Necessity is the mother of all inventions!