Title: natterjacks's Replies | WordPress.org

---

# natterjacks

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[List category posts] [Plugin: List category posts] QTranslate Issue](https://wordpress.org/support/topic/plugin-list-category-posts-qtranslate-issue/)
 *  [natterjacks](https://wordpress.org/support/users/natterjacks/)
 * (@natterjacks)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/plugin-list-category-posts-qtranslate-issue/#post-2045852)
 * I had the same issue with the “WP Category Post List” and QTranslate plugin and
   was able to fix it with a similar solution, thanks!!!
 * Here’s the solution…..
 * Find the following code in wp-category-post-list.php (you’ll find 2 lines the
   same):
 * `$post_output .= '<a href="' . get_permalink($post->ID) . '" target="' . ((false
   == $instance['open_in'])? '_blank' : '_self') . '">' . $post->post_title . '</
   a>';`
 * Right above that add:
 *     ```
       if (function_exists('qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')) {
       $post->post_title = esc_html(qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($post->post_title));
       }
       ```
   
 * Do this for both entries to apply to normal posts and sticky posts.

Viewing 1 replies (of 1 total)