1

我在 Magento 中创建了 CMS 页面,我想使用 Facebook、Twitter、Google+ 的分享按钮与社交网站分享,所以有人告诉我该怎么做吗?

4

3 回答 3

5

将此部分添加到:

your_package/your_theme/template/page/html/head.phtml

在这一行之前 --><?php echo $this->helper('core/js')->getTranslatorScript() ?>

<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "ur-c297c92f-9661-1cf3-697d-47c19ab7e281"});</script>

将此部分添加到您的 cms 页面:

<span class='st_facebook_hcount' displayText='Facebook'></span>
<span class='st_twitter_hcount' displayText='Tweet'></span>
<span class='st_googleplus_hcount' displayText='Google +'></span>

注意:使用 sharethis 扩展

于 2012-11-23T06:39:50.777 回答
2

您可以在下面的 URL 中查看 Addthis 按钮,选择要共享的按钮样式,获取代码并将该代码添加到 Magento Admin >> CMS >> Pages。单击编辑器的 Html 视图并粘贴您从 Addthis 站点获取的代码,您将在前端看到共享按钮。另一种方法是您可以将此代码添加到您的模板文件中常用的示例 1column.phtml 用于 CMS 页面,您需要在所有 CMS 页面上共享按钮,然后您可以将相同的代码粘贴到 .phtml 模板文件中。

添加这个:https ://www.addthis.com/get/sharing#.UK8_PoafHcc

于 2012-11-23T09:30:21.457 回答
0

虽然这是一个旧线程,但我想分享我找到的答案。

  1. 在中添加元标记

模板/页面/html/head.phtml

<meta property="og:site_name" content="yoursite.com"/>
  1. 通过将 Facebook 分享按钮代码粘贴到变量 HTML 值,从系统/自定义变量创建自定义变量。

  2. 要将喜欢/分享按钮添加到 cms 或静态块,请使用“插入变量”按钮插入您刚刚创建的自定义变量。

于 2016-04-03T05:56:05.170 回答