Title: [Plugin: Sociable] the_excerpt adding text&#8230;
Last modified: August 20, 2016

---

# [Plugin: Sociable] the_excerpt adding text…

 *  [jpw123](https://wordpress.org/support/users/jpw123/)
 * (@jpw123)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-sociable-the_excerpt-adding-text/)
 * The sociable plugin is adding the word “Tweet” to the end of excerpts when in
   category view. It is only adding this text to the end of excerpts that do not
   exceed the 55 word limit.
 * Has anyone experienced this issue?
 * [http://wordpress.org/extend/plugins/sociable/](http://wordpress.org/extend/plugins/sociable/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [rickyrombo](https://wordpress.org/support/users/rickyrombo/)
 * (@rickyrombo)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-sociable-the_excerpt-adding-text/#post-2499732)
 * I too have found this problem. I will let you know if I find a workaround.
 * EDIT: I found a workaround by going into the plugin. I went to the one labeled
   Twitter, found where it had:
 * `return '<a href="http://twitter.com/share" class="twitter-share-button" data-
   url="'.get_permalink().'" data-text="'.get_the_title().'" data-count="'.$this-
   >option('button').'">Tweet</a>'`
 * and removed the Tweet from inside the anchor. It doesn’t seem to have any immediate
   problems.
 *  [Keith Whannell](https://wordpress.org/support/users/1lwebstudio/)
 * (@1lwebstudio)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-sociable-the_excerpt-adding-text/#post-2499757)
 * Cleaner solution.
 * Add this to your functions.php
 *     ```
       function fix_social_excerpts($content){
       	$content = str_ireplace('tweet','',$content);
       	return $content;
       }
       add_filter('the_excerpt', 'fix_social_excerpts');
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: Sociable] the_excerpt adding text…’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/sociable.svg)
 * [Sociable](https://wordpress.org/plugins/sociable/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/sociable/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/sociable/)
 * [Active Topics](https://wordpress.org/support/plugin/sociable/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/sociable/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/sociable/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [Keith Whannell](https://wordpress.org/support/users/1lwebstudio/)
 * Last activity: [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-sociable-the_excerpt-adding-text/#post-2499757)
 * Status: not resolved