Viewing 2 replies - 1 through 2 (of 2 total)
  • I think I’ve solved the problem. There is a code error in Simple Social. Here’s how you fix it.

    1. Go to your plug-in editor and load the following file:

    simple-social-sharing-widgets-icons/simple-social.php

    2. Then go to line 12 and change the following statement from this:

    $simplesocial_title = urlencode(get_the_title($post->ID) )

    to this:

    $simplesocial_title = urldecode(get_the_title($post->ID) )

    3. Update the file and you’re done

    *Note Thanks to Google I found out that the command urlENcode replaces spaces, quotes, etc., with +’s and %xx’s. The command you need to get rid of that stuff is urlDEcode.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Simple Social – Sharing Widgets & Icons] Text for Tweet should not be url encoded’ is closed to new replies.