应用 AddThis 按钮

Applying AddThis buttons

我想将社交书签服务 AddThis 添加到我的站点。我按照网站上的说明进行操作。有一个选项,您可以 select 您自己的服务并自定义订单。

我select访问了 facebook、twitter、google、链接、pinterest 和 whatsapp。

按照说明,我添加了

<script type="text/javascript" src="https://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-53353be15c66b7b4" async="async"></script>

在关闭之前的 head 标签内。

然后,我在需要显示按钮的地方添加了

<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
    <a class="addthis_button_preferred_1"></a>
    <a class="addthis_button_preferred_2"></a>
    <a class="addthis_button_preferred_3"></a>
    <a class="addthis_button_preferred_4"></a>
    <a class="addthis_button_preferred_5"></a>
    <a class="addthis_button_preferred_6"></a>
</div>

最终结果:

它显示了一些我没有select编辑的按钮。

我一定是做错了什么,花了一整天的时间来研究它。你能帮忙吗

Not Seeing the Buttons You Expected? It’s Because Smart Layers are Personalized

One of the key features of our new Smart Layers is something you can’t actually see. All the share buttons are personalized to each visitor. This makes it much more likely that people will share your site.

-source: http://www.addthis.com/blog/2013/07/30/not-seeing-the-buttons-you-want/

所以基本上它的意思是,如果知道特定用户更多地使用特定社交服务,则只会向该人显示那些按钮。过滤似乎是在低级别完成的。


看看other similar services

您的问题是您手动设置了页面上的图标。考虑到您是通过 addthis.com 网站选择服务,只需将以下 div 元素添加到您的页面,代替您当前的 addthis 代码:

<div class="addthis_sharing_toolbox"></div>

div 将自动填充您从 addthis.com 中选择的服务,相信我,我得到了这个。

我是 AddThis 支持团队的 Elsa。

如果您使用的是默认的 AddThis 配置,它使用的是我们所说的首选服务。根据他们过去的共享历史以及我们服务中最受欢迎的服务,这些对于每个人来说都是不同的。这是为了方便用户分享到自己喜欢的服务,增加分享量。

如果您想在您的网站上显示仪表板配置的共享按钮,请替换以下代码

<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
<a class="addthis_button_preferred_5"></a>
<a class="addthis_button_preferred_6"></a>
</div>

使用该工具的以下内联 HTML 代码。

<div class="addthis_sharing_toolbox"></div>