How to set a custom title per language?
You have to use a static page in this case: Settings -> General -> Fron Page Display: A static Page
You have to use a static page in this case: Settings -> General -> Fron Page Display: A static Page
I figured this one out too, 1-2 hours of research! So, to make qtranslate quick tags work with custom fields, this is what you do: <?php _e(get_post_meta($post->ID, ‘Activities’, true));?> _e and all quicktags work perfectly but not full version but shorthand version [:en] etc.
The define(‘WPLANG’, ‘ru_RU’); in the wp-config.php is no longer needed, as WordPress stores this value in the database (starting from version 4.0). However, I suppose your problem is actually something different. Your Steps: Add a filter to locale To ensure your language is set correctly, use a code like this: add_filter( ‘locale’, ‘f711_set_language’ ); function … Read more
This might help: http://www.gish.se/wg-qtranslate.zip – download and install, then fix plugin, changing: foreach($content as $language => $lang_text) { $lang_text = trim($lang_text); if(!empty($lang_text)) $languages[] = $language ; } to foreach($content as $lang => $lang_text) { $lang_text = trim($lang_text); if(!empty($lang_text)) $languages[] = $lang ; } taken from http://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=2958, works in most cases
Run a filter on get_pagenum_link and you should be able to do what you want. The next_posts_link / previous_posts_link functions each call functions that in turn call other functions, which eventually route back to the get_pagenum_link function which provides a filter by the same name. It should give you the control you need, though post … Read more
Tip 1: do not use qtranslate. I’ve used for years and now I can say that never been money better spent than those for WPML, specially if compared to the work needed to solve problems qT brings. Also consider that WPML is compatible with a huge number of plugins and themes, in years I used … Read more
1) The plugin doesn’t automatically provide translation – you have to fill it in yourself. However, there is a service you can use to get your translations: With qTranslate 2.3, a new feature called “qTranslate Services” have been added. So what does it do? Well, with qTranslate Services, qTranslate can finally do what the name … Read more
I am not confident without downloading Estonian copy of WP source, but from look at GlotPress it seems that locale code for it is simply et, not et_EE.
Check the code that is used by NuRelm Get Posts, it’s very likely that it outputs the title using something like echo $post->post_title; To have the title translated by qTranslate,the plugin must use the standard function of WordPress, in this case the_title, that is applying the filters that qTranslate use to render the text multilanguage. … Read more
I don’t know how qTraslate works, but you can pass filters to Widget Logic , you basically duplicate each widget, one for each language. I have used this technique with WPML to show widgets in separate languages that can sometimes be difficult ( such as when they make direct DB queries).