Title: Multilanguage COMPATIBILITY?
Last modified: August 22, 2016

---

# Multilanguage COMPATIBILITY?

 *  Resolved [mirasexy](https://wordpress.org/support/users/mirasexy/)
 * (@mirasexy)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/)
 * Dear Mike,
 * i was reading a lot of threads about this topic, but in 90% cases no answers,
   or just excuses that i will be done in future.
 * Can u pls give me actual update if that plugin can be used fully in multilingual
   mode and tell me which theme and plugins to use??
 * As far as i can see from other threads Jobify is not compatible and WPML isnt,
   too.
 * So how can i solve that problem? Indeed, I would need Jobify run with WPML…
 * Pls help me out
 * [https://wordpress.org/plugins/wp-job-manager/](https://wordpress.org/plugins/wp-job-manager/)

Viewing 11 replies - 16 through 26 (of 26 total)

[←](https://wordpress.org/support/topic/multilanguage-compatibility/?output_format=md)
[1](https://wordpress.org/support/topic/multilanguage-compatibility/?output_format=md)
2

 *  Plugin Author [Mike Jolley](https://wordpress.org/support/users/mikejolley/)
 * (@mikejolley)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5377931)
 * Yeah, just:
 * > I am in our company’s conference and will be back to routine work only on Monday–
   > I’ll look at that Monday morning.
 * So still waiting.
 *  [nh123](https://wordpress.org/support/users/nh123/)
 * (@nh123)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5377940)
 * Hi Mike,
 * I am in the same situation needing to be able to run a multilingual with your
   core applications and the Jobify theme.
 * When I read on the Jobify marketing page on themeforest it Saids that it is WPML
   compatible and the theme recommends WP job manager so I really tohught it would
   Work.
 * What exactly is that dont Work ?
 * I only need the users to be able to change the language for the static text. 
   The dynamic text in add and resumes does not need any translation in my case.
 * Best regards,
 * Nicolai
 *  Plugin Author [Mike Jolley](https://wordpress.org/support/users/mikejolley/)
 * (@mikejolley)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5377949)
 * [@nh123](https://wordpress.org/support/users/nh123/) At the moment, some users
   are having trouble with it not pulling the jobs for a language they are viewing.
   Some other users want it to copy jobs to all languages when posted, but WPML 
   doesn’t do this. Finally, some users are having trouble when they have jobs in
   different languages with a different base permalink.
 *  [theisc](https://wordpress.org/support/users/theisc/)
 * (@theisc)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378017)
 * Hi Mike,
 * Any update on the issue that you described above?
 * Thanks
 * ISC
 *  Plugin Author [Mike Jolley](https://wordpress.org/support/users/mikejolley/)
 * (@mikejolley)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378018)
 * [@theisc](https://wordpress.org/support/users/theisc/) WPML never replied. We
   did add compatibility in that it will show jobs from the current language. Anything
   beyond that, such as duplicating jobs to all languages, will require customisation
   and help from WPML directly.
 *  [Alexmanc](https://wordpress.org/support/users/alexmanc/)
 * (@alexmanc)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378019)
 * Hi Mike and friends,
 * WPML answer me today this:
 * If your theme is not compatible with us, Please feel free to invite the theme
   author to join our “Go Global” program to make theme fully compatible with WPML:
 * => [http://wpml.org/documentation/theme-compatibility/go-global-program/](http://wpml.org/documentation/theme-compatibility/go-global-program/)
 * I don’t know why they don’t answer you Mike… but I trust in your effort
 *  Plugin Author [Mike Jolley](https://wordpress.org/support/users/mikejolley/)
 * (@mikejolley)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378020)
 * [@alexmanc](https://wordpress.org/support/users/alexmanc/) they pinged me again
   today 🙂
 *  [matthewgfc](https://wordpress.org/support/users/matthewgfc/)
 * (@matthewgfc)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378030)
 * Hey Mike,
 * I’m in the same situation here. Running latest WPML and using English and French.
   I have all taxonomies and categories translated. When viewing the French [jobs]
   page, only English jobs show up even when French taxonomies are selected.
 * Have you heard anything back from WPML on this? Do you know of a temporary workaround
   to get this off the ground in the meantime?
 * Thanks!
 *  [matthewgfc](https://wordpress.org/support/users/matthewgfc/)
 * (@matthewgfc)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378031)
 * Hi Mike,
 * I solved my own problem temporarily. This is by no means a great fix, but at 
   the very least fixed my issue for now.
 * Under the get_endpoint() method in wp-class-job-manager-ajax, I added a conditional
   to check the current language. After which I change the $endpoint var.
 *     ```
       /**
       	 * Get JM Ajax Endpoint
       	 * @param  string $request Optional
       	 * @param  string $ssl     Optional
       	 * @return string
       	 */
       	public static function get_endpoint( $request = '', $ssl = null ) {
   
       		/* Temporary workaround for WPML */
       		$current_lang = get_locale();
       		if($current_lang == 'fr_FR')
       		{
       			$endpoint_prefix = '/fr/';
       		}else
       		{
       			$endpoint_prefix = '';
       		}
   
       		if ( strstr( get_option( 'permalink_structure' ), '/index.php/' ) ) {
       			$endpoint = trailingslashit( home_url( '/index.php/'. $endpoint_prefix . 'jm-ajax/' . $request, 'relative' ) );
       		} elseif ( get_option( 'permalink_structure' ) ) {
       			$endpoint = trailingslashit( home_url( $endpoint_prefix . '/jm-ajax/' . $request, 'relative' ) );
       		} else {
       			$endpoint = add_query_arg( 'jm-ajax=', $request, trailingslashit( home_url( '', 'relative' ) ) );
       		}
       		return esc_url_raw( $endpoint );
       	}
       ```
   
 * This is again a temporary fix for all who suffer from this issue currently.
 *  Plugin Author [Mike Jolley](https://wordpress.org/support/users/mikejolley/)
 * (@mikejolley)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378032)
 * [@matthewgfc](https://wordpress.org/support/users/matthewgfc/) we pass LANG [https://github.com/Automattic/WP-Job-Manager/blob/master/wp-job-manager.php#L159](https://github.com/Automattic/WP-Job-Manager/blob/master/wp-job-manager.php#L159)–
   is this not enough?
 *  [matthewgfc](https://wordpress.org/support/users/matthewgfc/)
 * (@matthewgfc)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378033)
 * It wasn’t for me. Perhaps my setup is different in some way? I analyzed the headers
   and my _icl_current_language was set correctly to ‘fr’ everywhere except the [
   jobs] page. Once an AJAX call was made, the response headers reset the _icl_current_language
   cookie back to en.
 * Modifying the AJAX endpoint was the only permanent (until update) solution that
   fixed it for me. Any ideas? It seems to work fine now.

Viewing 11 replies - 16 through 26 (of 26 total)

[←](https://wordpress.org/support/topic/multilanguage-compatibility/?output_format=md)
[1](https://wordpress.org/support/topic/multilanguage-compatibility/?output_format=md)
2

The topic ‘Multilanguage COMPATIBILITY?’ is closed to new replies.

 * ![](https://ps.w.org/wp-job-manager/assets/icon-256x256.gif?rev=2975257)
 * [WP Job Manager](https://wordpress.org/plugins/wp-job-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-job-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-job-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-job-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-job-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-job-manager/reviews/)

 * 26 replies
 * 6 participants
 * Last reply from: [matthewgfc](https://wordpress.org/support/users/matthewgfc/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/multilanguage-compatibility/page/2/#post-5378033)
 * Status: resolved