ADD chat in WordPress
-
Hello!
I’d need to add a chat in wordpress theme. The chat is made in html and javascript.
I tried to add it on local with twentyseventeen theme installed using this code, and it worked fine.` function add_chat ( ) {
?>
<script type=”text/javascript”>
SERVICE_PATTERN_CHAT_CONFIG = {
appId: ‘0ef0636b4c36497b866322a096926049’,
clientId: ‘WebChat’, /* no need to change this */
apiUrl: ‘https://poc.3d2b.ccaas.becloudsolutions.com:9443/clientweb/api/v1’,
tenantUrl: ‘3d2b.com’,
width: 300,
chatPath: ”};
</script>
<script type=”text/javascript” src=”js/snippet.js”></script>
<?php
}add_action (‘wp_footer’, ‘add_chat’ );`
But If I try to do the same thing online with another theme, I didn’t work.
Any advice?
Thank you in advance
- The topic ‘ADD chat in WordPress’ is closed to new replies.