Hello,
Can you try to change code in your hikashopsocial.php, here :
YourWebsite/plugins/system/hikashopsocial/hikashopsocial.php
Look for this line, around line 230 and replace this :
return '<span class="hikashop_social_pinterest'.$c.'"><a href="//pinterest.com/pin/create/button/?url='.urlencode($url).'&media='.urlencode($imageUrl).'&description='.$description.'" class="pin-it-button" count-layout="'.$count.'"><img border="0" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" /></a></span>';
For this :
return '<span class="hikashop_social_pinterest'.$c.'"><a href="//pinterest.com/pin/create/button/?url='.urlencode($url).'&media='.urlencode($imageUrl).'&description='.urldecode($description).'" class="pin-it-button" count-layout="'.$count.'"><img border="0" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" /></a></span>';
The important part is :
-
Before : "&description='.$description"
-
After : "&description='.
urldecode($description)"
I think that's will solve your trouble, but I'm waiting news from you.
Regards.