Title: Multilang issue
Last modified: July 31, 2017

---

# Multilang issue

 *  Resolved [disca91](https://wordpress.org/support/users/disca91/)
 * (@disca91)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/multilang-issue/)
 * Hi, i use qTranslate-X plugin for multilang on a recent website i made, i use
   your timeline on this page: [http://www.lacascinadesign.it/about/](http://www.lacascinadesign.it/about/)
   but it only shows eng version of the text.
 * Any solution?
 * tnx,
 * Dom

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

 *  Plugin Contributor [Code Parrots](https://wordpress.org/support/users/codeparrots/)
 * (@codeparrots)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/multilang-issue/#post-9366457)
 * Hi [@disca91](https://wordpress.org/support/users/disca91/),
 * Have you seen our documentation on q-translate and translations? [https://www.wp-timelineexpress.com/documentation/qtranslate-languages-not-loading-properly/](https://www.wp-timelineexpress.com/documentation/qtranslate-languages-not-loading-properly/)
 * In short, we have a set of caching mechanisms built into the plugin that decrease
   page load speeds by caching the database queries and a few other things. This
   prevents us from having to re-run these queries on each page load.
 * If you’ve set up translations and checked the page, then the cache is going to
   be stored in that language. However, you can ‘disable’ the cache on the timeline
   so that when the language is switched, the proper translations are loaded.
 * Feel free to take a look at the documentation above for assistance.
 * For quick reference, the code snippet proposed in the knowledge base article 
   is:
 *     ```
       /**
        * Clear Timeline Express cache on qtranslate pages
        *
        * @author Code Parrots 
        */
       function timeline_qtranslate_bust_cache() {
   
       	global $post;
   
       	if ( ! isset( $post->ID ) || false === get_transient( "timeline-express-query-{$post->ID}" ) ) {
   
       		return;
   
       	}
   
       	delete_transient( "timeline-express-query-{$post->ID}" );
   
       }
       add_action( 'qtranslate_head_add_css', 'timeline_qtranslate_bust_cache' );
       ```
   
 * You’ll want to add that to your themes functions.php file, or into a custom plugin.
   If you are unsure of how to edit the themes functions.php file you can use another
   plugin such as [My Custom Functions](https://wordpress.org/plugins/my-custom-functions/)
   to add it right from the dashboard.
 * Let us know if that works on your end!
 *  Plugin Contributor [Code Parrots](https://wordpress.org/support/users/codeparrots/)
 * (@codeparrots)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/multilang-issue/#post-9383412)
 * Hi [@disca91](https://wordpress.org/support/users/disca91/),
 * This snippet will be introduced into our next release, version 1.5.2, so users
   don’t have to worry about adding the snippet themselves. This snippet will be
   active when q-translate is installed and active. Feel free to update to receive
   the patch.
 *  Plugin Contributor [Code Parrots](https://wordpress.org/support/users/codeparrots/)
 * (@codeparrots)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/multilang-issue/#post-9383509)
 * This is now included in the 1.5.2 release that was just pushed out to the WordPress
   repository.
 * If for some reason you are still encountering issues, please don’t hesitate to
   post back here and let us know.
 * Thanks again.
 *  Thread Starter [disca91](https://wordpress.org/support/users/disca91/)
 * (@disca91)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/multilang-issue/#post-9383948)
 * I’m going to update the plugin right now, adding the code to function.php didn’t
   work

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

The topic ‘Multilang issue’ is closed to new replies.

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

 * 4 replies
 * 2 participants
 * Last reply from: [disca91](https://wordpress.org/support/users/disca91/)
 * Last activity: [8 years, 9 months ago](https://wordpress.org/support/topic/multilang-issue/#post-9383948)
 * Status: resolved