我在drupal上的smartsupp聊天有问题,

这是调用聊天框的代码,我将其插入到php页面中,但是问题是加载时间很长。如何优化脚本,以便快速加载。

<!-- Smartsupp Live Chat script -->
<script src="js/loader.js"></script>
<script type="text/javascript">
var _smartsupp = _smartsupp || {};
_smartsupp.key = '425fb33bf5e0cf0b359b9e60a17d16a78fd5efa3';
window.smartsupp||(function(d) {
    var s,c,o=smartsupp=function(){ o._.push(arguments)};o._=[];
    s=d.getElementsByTagName('script')[0];c=d.createElement('script');
    c.type='text/javascript';c.charset='utf-8';c.async=true;
    c.src='//www.smartsuppchat.com/loader.js';s.parentNode.insertBefore(c,s);
})(document);
</script>

最佳答案

我是Smartsupp的弗拉基米尔

您是否在Smartsupp中使用访客记录?此功能具有最大的负载。如果加载时间是您最关心的问题,则可以关闭访客录制(访客录制选项卡中的齿轮图标)。

有关Smartsupp脚本加载时间的一点信息:

Smartsupp聊天脚本大小为112 KB。加载时,所有Smartsupp元素的大小为450 KB,在宽带Internet连接上加载需要230毫秒。该脚本是异步的,因此不会减慢网站的加载速度。您可以在此处查看脚本加载的详细信息:

https://www.dropbox.com/s/0vy54qnuko7884n/_Smartsupp%20script%20load%20time.png?dl=0

如果您还有其他问题,可以通过[email protected]与我们联系。

10-05 22:55