Facebook 点赞按钮 - 如何禁用评论弹出?
我想禁用当用户单击我放置在网站上的 Facebook (fbml) Like 按钮时弹出的评论框。这可以吗?我在文档中找不到任何详细信息。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想禁用当用户单击我放置在网站上的 Facebook (fbml) Like 按钮时弹出的评论框。这可以吗?我在文档中找不到任何详细信息。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(21)
将 iframe 放入适当大小的 div 中并将溢出设置为隐藏解决了此问题 - 尽管这实际上只是隐藏了问题本身。
Putting the iframe in a appropriately sized div with overflow set to hidden resolved this issue - although this is only actually hiding the problem as such.
我在 CSS 中使用它:
并使用普通的 HTML5 代码渲染 Facebook 按钮,如下所示:
gr-
I use this in my CSS:
and render the Facebook button with the normal HTML5 code, something like this:
gr-
我所做的是为“喜欢”按钮创建一个 div,如下所示:
这是 CSS:
What I did is crate a div for the "like" button like this:
And this is the CSS :
我喜欢穆罕默德·阿里夫的解决方案,并选择它作为最佳答案。但如果 FB 更改了类,那么下面的内容将始终有效..
其中“like_button_holder”是保存 facebook like 按钮代码的“您的”div id
I like Mohammed Arif's solution and I choose it as the best answer. But in case FB changed classes, then the below will always work..
where "like_button_holder" is "YOUR" div id holding the facebook like button code
有效的更干净的解决方案(截至2014 年 5 月)-
首先确保
具有 data-layout 属性作为 button-
只需添加此 CSS-
就这样!
演示
The cleaner solution that works (as of May 2014)-
First of all make sure the the
<div class="fb-like"
has data-layout property as button-Just add this CSS-
That's it!
Demo
我不想成为黛比·唐纳 (Debby Downer),但隐藏评论框不会违反 Facebook 政策吗?
四.应用程序集成点
d.您不得遮盖或遮盖我们社交插件的元素,例如“赞”按钮或“赞”框插件。
https://developers.facebook.com/policy/
Not to be a Debby Downer here, but doesn't hiding the comments box violate Facebook Policy?
IV. Application Integration Points
d. You must not obscure or cover elements of our social plugins, such as the Like button or Like box plugin.
https://developers.facebook.com/policy/
我无法使用
display: none
选项来使用 HTML 5 版本的按钮。相反,我将目标放在创建 Like 按钮的 div 上,并将溢出设置为隐藏。在我的主 css 文件中添加以下内容就可以了:
I couldn't get the
display: none
option to work with the HTML 5 version of the button. Instead I targeted the div that the like button button is created in and set the overflow to hidden.Dropping the following in my main css file did the trick:
同意 BrynJ 的观点,目前最好的解决方案是将 Like 按钮放在 20px 高的 div 容器中,并将溢出设置为隐藏(我在某处读到 FB 最近将评论弹出窗口移动到 iFrame 中,因此修改 < 的样式的解决方案strong>.fb_edge_widget_with_comment 对于 iFrame 用户来说可能不再有用)。
使用添加这个?这样做:
Agree with BrynJ, best solution currently is to put the like button in a 20px high div container, and set the overflow to hidden (I read somewhere that FB recently moved the comment flyout into the iFrame, so the solution that modifies the styling of .fb_edge_widget_with_comment is probably not useful anymore for iFrame users).
Using AddThis? Do this:
如果单击“喜欢”时喜欢按钮消失,并且您有一个容器 div 来隐藏评论弹出窗口,则使用以下解决方案:
创建一个容器 div 来放置类似 fb 的按钮,并为其提供以下 css:
If the like button disappears when you click "like" and you have a container div to hide the comment pop-up, then use the following solution:
create a container div to place the fb-like button in and give it the following css:
我通过实施 IFRAME 版本设法规避了 Facebook 点赞按钮评论弹出问题。我采取了以下步骤来执行此操作:
据我所知,使用 IFRAME 实现的“点赞”按钮不会触发任何弹出窗口。它的功能只是充当“点赞”按钮。这是我想要的结果。
祝你好运。
I managed to circumvent the Facebook like button comment pop-up issue by implementing the IFRAME version instead. I took the following steps to do so:
From what I can see, the like button with IFRAME implementation does not trigger any pop-up. It simply functions as a like button. This was my desired outcome.
Good luck.
下面的代码使 Like 按钮与 Twitter 和 Linkedin 一起作为标准按钮工作。希望有帮助。
Here is the code to have the Like button working as just a standard button along with Twitter and Linkedin. Hope it helps.
让我们试试这个:
Lets try this one:
正如我所做的那样,评论弹出窗口将在以下情况下被禁用:
As i have done ok, the comment popup will be disabled when:
如果您使用较新的 HTML5 按钮,并且您应该使用它,因为它向前兼容并由 Facebook 建议,这很容易,偏离其他人所说的:
第二类对于使用 AddThis 插件的人来说是一个奖励。
If you use the newer HTML5 button, and you should as it's forward compatible and suggested by Facebook, it's easy, going off from what others have said:
The second class is a bonus for those using the AddThis plugin.
show-faces=true
时不应使用上述溢出高度选项。否则,它会隐藏面孔。The overflow height options mentioned above shouldn't be used when
show-faces=true
. Otherwise, it will hide the faces.就我而言(使用 XFBML 版本),我已将以下内容添加到标签中:
所以最终结果是:
它正确隐藏了评论弹出窗口。
In my case (with the XFBML version) I've added to the tag this:
So the end result is:
It's hiding correctly the comment popup.
隐藏评论框可以工作,但如果评论弹出框后面有可点击的元素,可能会产生问题。
你必须隐藏它并从 DOM post 中删除它。
这是隐藏评论框的 CSS:
这是删除 DOM 元素的 JQuery 方法:
这是使用回调中提供的小部件的纯 JavaScript 方法:
Hiding the comment box work but can create problem if you have clickable element behind the comment flyout box.
You have to hide it and remove it from the DOM post like.
Here is the CSS to hide the comment box:
Here is the JQuery way of removing the DOM element:
Here is the pure javascript way using provided widget from the callback:
如果你只想显示点赞按钮,你可以尝试这样的
HTML:
CSS:
If you want to show only the like button, you may try something like this
HTML:
CSS:
将溢出设置为隐藏可能会有所帮助。在你的主 css 文件中执行此操作..
Setting overflow to hidden might help. Do this in your main css file..
如何将包含类似按钮的 iframe 设为与该按钮相同的大小:
就是这样。
How about just make the iframe that contains the like button the same size as the button:
That's it.
在 Facebook Like(XFBML 版本而不是 iframe 版本)之后隐藏评论框的最简单修复如下:
将 CSS 样式放入任何 CSS 文件中,看看神奇的效果,它有效:)
Simplest fix to hide the comment box after Facebook Like (XFBML version not the iframe one) is as given:
Put the CSS style in any of your CSS file and see the magic, it works :)