Facebook“点赞”电子商务网站上的按钮

发布于 2024-10-08 02:54:01 字数 192 浏览 6 评论 0原文

我想在我的电子商务网站上添加“喜欢”按钮。我面临的问题是弄清楚如何让每个单独的页面都有自己的“赞”可访问性。这意味着,如果用户点击某个产品的“赞”,我不希望其他产品也显示“赞”。它应该以每个产品为基础。

在这种情况下,如何配置“赞”按钮,以便用自己的“赞”来个性化每个项目?

我需要使用 FBML 还是可以通过 iframe 嵌入来完成?

I'm looking to add the 'Like' button on my ecommerce site. The problem I'm facing is figuring out how to have each individual page have its own Like accessibility. Meaning, if a user clicks on Like for one individual product, I don't want the Like to show up for other products. It should be on a per product basis.

How does one configure the Like button in this case, to individualize each item with its own Likes?

Do I need to use FBML or can it be done with the iframe embed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖哒 2024-10-15 02:54:01

是的,可以使用 FB iframe 代码来完成,您只需将每个产品的唯一 URL 写入每个页面的代码中即可。

因此,您需要进行组装:

<iframe src="http://www.facebook.com/widgets/like.php?href=http://www.example.com/UNIQUE-URL" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe>

其中 example.com 替换为您的网站,UNIQUE-URL 替换为该产品的 URL。因此,您的页面模板将使用类似以下内容的内容:

<iframe src="http://www.facebook.com/widgets/like.php?href=http://www.example.com/products.php?pid=<?php print $pid ?>" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe>

Yes it can be done with FB iframe code, you just need to write in the unique URL for each product into the code for each page.

So you need to assemble:

<iframe src="http://www.facebook.com/widgets/like.php?href=http://www.example.com/UNIQUE-URL" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe>

where example.com is replaced with your site and UNIQUE-URL is replaced with the URL for that product. So your page template would use something like:

<iframe src="http://www.facebook.com/widgets/like.php?href=http://www.example.com/products.php?pid=<?php print $pid ?>" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文