Having the same issue here.
Same issue here with pinterest button, but mine is overlapping facebook like as it is the button right above the pinterest button.
Plugin Author
remix4
(@remix4)
Please provide a link to the page where it is installed
here is my URL: http://www.iriswebsolutions.in/
also pin count is always 0.
Plugin Author
remix4
(@remix4)
The Pinterest button styling has changed. Add the following css to correct it:
#dcssb-pinit a {margin-top: 30px!important;}
@shounakgupte
According to Pinterest your count is 0:
http://api.pinterest.com/v1/urls/count.json?url=http://www.iriswebsolutions.in
anything on the facebook issue? Facebook like shows ERROR “The href URL must be absolute”
Plugin Author
remix4
(@remix4)
I dont see any problems with your facebook button
I just ran into this exact Facebook issue, found the fix:
dcwp_social.php, around line 110 find:
/* Facebook */
function dcssb_inc_facebook($link){
$elink = urlencode($link);
You need to remove the urlencode() so replace with:
/* Facebook */
function dcssb_inc_facebook($link){
$elink = $link;
Apparently Facebook changed something that caused many people to experience this sometime in January and urlencode was to blame in all cases.
Plugin Author
remix4
(@remix4)
Update to v 2.4.10 – this includes the fix for the facebook error