Getting Same Facebook "Like" count for different URLS -
i'm trying add multiple "like" buttons on same page specifying different url's
i have 2 urls want "like" on separate page
http://www.spoilertv.com/search/label/brothers%20and%20sisters http://www.spoilertv.com/search/label/better%20with%20you
here code.
better <iframe src="http://www.facebook.com/plugins/like.php?href=http%3a%2f%2fwww.spoilertv.com%2fsearch%2flabel%2fbetter%2520with%2520you&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowtransparency="true"></iframe> brothers , sisters <iframe src="http://www.facebook.com/plugins/like.php?href=http%3a%2f%2fwww.spoilertv.com%2fsearch%2flabel%2fbrothers%2520and%2520sisters&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowtransparency="true"></iframe>
the problem both show same "like" count.
what doing wrong?
thanks in advance help
imo problem spaces (%20) converted (%2520) within facebook iframe.
try use space unicode (%20) directly:
better <iframe src="http://www.facebook.com/plugins/like.php?href=http%3a%2f%2fwww.spoilertv.com%2fsearch%2flabel%2fbetter%20with%20you&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowtransparency="true"></iframe> brothers , sisters <iframe src="http://www.facebook.com/plugins/like.php?href=http%3a%2f%2fwww.spoilertv.com%2fsearch%2flabel%2fbrothers%20and%20sisters&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowtransparency="true"></iframe>
hope helps :)
Comments
Post a Comment