Title: contra8's Replies | WordPress.org

---

# contra8

  [  ](https://wordpress.org/support/users/contra8/)

 *   [Profile](https://wordpress.org/support/users/contra8/)
 *   [Topics Started](https://wordpress.org/support/users/contra8/topics/)
 *   [Replies Created](https://wordpress.org/support/users/contra8/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/contra8/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/contra8/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/contra8/engagements/)
 *   [Favorites](https://wordpress.org/support/users/contra8/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Bug](https://wordpress.org/support/topic/bug-208/)
 *  [contra8](https://wordpress.org/support/users/contra8/)
 * (@contra8)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/bug-208/#post-9802934)
 * So try this script:
 *     ```
       jQuery('.entry-content').each(function() {
       		if (jQuery('.entry-content:contains("</a>und<a")')) {
       			jQuery('.entry-content .author.url.fn:nth-last-child(4)').after(" ");
       			jQuery('.entry-content .author.url.fn:nth-last-child(3)').before(" ");
               }
           });
       ```
   
 * It is not beautiful but a working hack.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Bug](https://wordpress.org/support/topic/bug-208/)
 *  [contra8](https://wordpress.org/support/users/contra8/)
 * (@contra8)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/bug-208/#post-9802643)
 * Gibt es denn eine Beispielseite, auf der das Problem auftritt? Dann könnte ich
   es mir anschauen und das jQuery evtl. anpassen.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Bug](https://wordpress.org/support/topic/bug-208/)
 *  [contra8](https://wordpress.org/support/users/contra8/)
 * (@contra8)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/bug-208/#post-9799585)
 * Had the same problem on our side, just with the German word “und”. Added this
   small script in footer.php of the child-theme:
 *     ```
       <script type="text/javascript">
           <!-- SCRIPT FOR BUGFIX IN CO-AUTHORS PLUS: REPLACE "und" with " und " IN MULTIPLE EDITORS INFORMATION  -->
       	<!-- PROBLEM ONLY EXIST IN GERMAN -->
           jQuery('.post-time').each(function() {
       		if (jQuery('.post-time:contains("</a>und<a")')) {
       			jQuery('.post-time .author.url.fn:nth-last-child(3)').after(" ");
       			jQuery('.author.url.fn:last').before(" ");
               }
           });
       </script>
       ```
   
 * Not really elegant but it works.

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