I posted a question on stackoverflow and I haven't received any answers yet. maybe you can help me.... This is the problem:
Like buttons on my page that suppose to give "like" to different comments by their different 'href' given, raise the like count to all like buttons.
Link to my website page: http://petbuy.co.il/ProductCard.aspx?product_id=7873&friend_Id=1000
- look at the bottom of the page and try to "like" one of the comments and then refresh the page.. If you use a developer tool, you can see that every button iframe gets a different href... The "friend_id" param changes in each button href.. BUT ! If you look at the console log, you see that the response for this request of clicking the like button, uses only the first param of the url: The href is: http://petbuy.co.il/ProductCard.aspx?product_id=7873&friend_Id=1000 And it uses only the product_id=7873 without the friend_Id=1000.
I tried to switch the params, and this time it took only the friend_Id=1000".. I need them both :(( Thanks!!