• I run a multi-language site (Chinese and English) using WPML. I just activited Mingle Forum with creating two Forum pages (one in Chinese and one in English and inserted [mingleforum] on both pages.

    However, the Chinese page shows the header on the menu in Chinese, but the all headers in forum is still in English. And the English page also shows the header on the menu in English and all content in English.

    Mingle forum instructions says that it supports multi-languages. How am I supposed to get it set up for both languages? Once it is set up, can all users contribute and read content to the same topic regardless of the language they use? How is it supposed to work?

    The site is http://www.usinfo88.com

    Thank you in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • I have the same problem, Who get you the mutilenguaje forum?

    Hello, I just found a solution for this problem. Determine your language in wp-config.php and define it depending to the current language.

    In my case I use qTranslate with pretty permalinks, so I write the following in wp-config.php:

    if(preg_match('/\/de\//',$_SERVER['REQUEST_URI'])>0) {
    	define('WPLANG','de_DE');
    } else {
    	define('WPLANG','en_US');
    }

    In case of not using pretty permalinks use something like $_GET[‘lang’] to determine the current language at this early point of loading WP.

    it works perfect, thank you very much 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Mingle Forum for Multi-language site’ is closed to new replies.