1

Implemented a Facebook like button feature on my site. Everything is working fine. If I use a locale parameter for the API. Then it hides the total count value. Example given below.

<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&amp;width=450&amp;height=80&amp;colorscheme=light&amp;layout=standard&amp;action=like&amp;show_faces=true&amp;send=true&amp;appId=218119584872965" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

Above code block will show like button along with count but default language is English (Like).

Below code is same as above and here I used locale variable.

<iframe src="//www.facebook.com/plugins/like.php?locale=de_DE&amp;href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&amp;width=450&amp;height=80&amp;colorscheme=light&amp;layout=standard&amp;action=like&amp;show_faces=true&amp;send=true&amp;appId=218119584872965" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

Above code will show 'Gefällt mir' but hides like count.

Is there anything missing?

4

1 回答 1

2

在 iframe 代码中,您可以选择设置喜欢按钮显示为的高度和宽度。您只需要相应地增加宽度以适应所有内容。

例如,下面我将宽度增加到 500px。

<iframe src="//www.facebook.com/plugins/like.php?locale=de_DE&amp;href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&amp;width=500&amp;height=80&amp;colorscheme=light&amp;layout=standard&amp;action=like&amp;show_faces=true&amp;send=true&amp;appId=218119584872965" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe>

或者在您的情况下,父元素的宽度可能不足以显示整个内容,因此您可能需要增加其宽度。

于 2013-08-02T15:36:20.713 回答