Title: Merging comments from different languages
Last modified: August 21, 2016

---

# Merging comments from different languages

 *  Resolved [mongulu](https://wordpress.org/support/users/mongulu/)
 * (@mongulu)
 * [12 years ago](https://wordpress.org/support/topic/merging-comments-from-different-languages/)
 * I trying to merge the comments from different language on a post to be shown 
   on the same page.
 * I’ve looked at this thread [
    about Multilang comment
    and did all three steps
   suggested in it.
 * After installing [WPML Comment Merging plugin](http://wordpress.org/plugins/wpml-comment-merging/).
 * The number of comments counter are merge. E.g if I have 1 comment in english 
   and 1 in chinese… it will say the post have 2 comments.
 * However the post itself does not show up.
 * According to the author, if I type this
 *     ```
       function polylang_remove_comments_filter() {
           global $wp_filter;
           global $polylang;
           remove_filter('comments_clauses', array(&$polylang, 'comments_clauses'));
       }
       add_action('wp','polylang_remove_comments_filter');
       ```
   
 * into functions.php I should be able to show the comments, however nothing happens.
 * Just wondering whether it is an issue due to the version of wordpress 3.9.1 when
   compare to the author’s 3.5.1
 * I have even tried it on a brand new install site with the Twenty-thirteen theme
   but still no luck.
 * Can anyone help me?
 * [https://wordpress.org/plugins/polylang/](https://wordpress.org/plugins/polylang/)

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

 *  Plugin Author [Chouby](https://wordpress.org/support/users/chouby/)
 * (@chouby)
 * [12 years ago](https://wordpress.org/support/topic/merging-comments-from-different-languages/#post-5091450)
 * Hi!
 * That’s rather the big changes that I made in Polylang 1.2 which make this not
   work anymore.
 * Try:
 *     ```
       function polylang_remove_comments_filter() {
           global $polylang;
           remove_filter('comments_clauses', array(&$polylang->filters, 'comments_clauses'));
       }
       add_action('wp','polylang_remove_comments_filter');
       ```
   
 *  Thread Starter [mongulu](https://wordpress.org/support/users/mongulu/)
 * (@mongulu)
 * [12 years ago](https://wordpress.org/support/topic/merging-comments-from-different-languages/#post-5091455)
 * it worked!!! THANKS EVER SO MUCH!!!!

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

The topic ‘Merging comments from different languages’ is closed to new replies.

 * ![](https://ps.w.org/polylang/assets/icon-256x256.png?rev=3433336)
 * [Polylang](https://wordpress.org/plugins/polylang/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/polylang/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/polylang/)
 * [Active Topics](https://wordpress.org/support/plugin/polylang/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/polylang/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/polylang/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [mongulu](https://wordpress.org/support/users/mongulu/)
 * Last activity: [12 years ago](https://wordpress.org/support/topic/merging-comments-from-different-languages/#post-5091455)
 * Status: resolved