如何在网站主题布局中添加odoo live chat javascripts?

时间:2017-02-02 03:55:17

标签: javascript openerp odoo-8 openerp-8 livechat

如何在网站主题布局中添加odoo live chat javascripts?

我想在我的odoo网站页面的文档说明中添加以下内容:

将此代码复制并粘贴到您的网站中,标记内: 但问题是当我将它粘贴在那里时它无法正常工作。我想也许有一种正确的方法可以做到。

<link href="http://localhost:8069/web/css/im_livechat.external_lib" rel="stylesheet"/>
<script src="http://localhost:8069/web/js/im_livechat.external_lib" type="text/javascript"></script>
<script src="http://localhost:8069/im_livechat/loader/mydb/4" type="text/javascript"></script>

2 个答案:

答案 0 :(得分:0)

继承 website.layout 模板,并将您的脚本代码粘贴到 head 标记内。希望这将有效并在加载主页时您可以看到聊天向导。

答案 1 :(得分:-1)

放置*.js files under /your_module/static/src/js and *.css /static/src/css

并在模板中添加该文件

<template id="id">
   <link href="/you_module/static/src/css/your_css.css" rel="stylesheet"/>
   <link href="/web/static/src/css/your_css.css" rel="stylesheet"/>
</template>

希望它会对你有所帮助。