Qtranslate is a wordpress plugin for multilingual content management and translation support.

learn more… | top users | synonyms

-1
votes
0answers
12 views

hooks of qTranslate

Is there any ways to find out all hooks of qTranslate? I am thinking to add an action when a user clicks a flag to change the language. I've checked the cord codes of qTranslate, and it seems that ...
0
votes
0answers
34 views

qTranslate - show articles in two languages

I would like to show all articles on my page in two languages while the menu and everything is translated in the language choosen. <?php $id=5; $post = get_page($id); $content = qtrans_use('fr', ...
1
vote
1answer
43 views

Creating a custom multilingual form

I need to create a special form for my website where users cand specify a series of data including some textfields, combo boxes and sliders (from 0 to 100). Also I need this form to be qTranslate ...
0
votes
1answer
86 views

QTranslate for Custom Post Type

How to add qtranslate-support for custom post type? Just saving text with tags OR add flag switcher. My Custom Post Type field: add_meta_box('project_rolesid', 'Roles box', 'project_roles', ...
-1
votes
0answers
41 views

QTranslate Conflicts With Post-type

When A Post-type loop query is in index page & installed QTranslate, Loop Query Doesn't work.
0
votes
0answers
46 views

qTranslate: Use page-content of another language instead of Non-availability message

if a page for a language is empty, normally the "Non-availability message" appears and told the user to open the page with an other language. But i want to display the page-content from another ...
2
votes
1answer
42 views

Is there a way to localize role labels?

I'm using Justin Tadlock's Members plugin to create new roles and WP Role on Registration to display them on the registration form. I've got a multilang site (English and Spanish) and I've localized ...
0
votes
0answers
105 views

Redirect from one url to another. Qtranslate and search engine problem

I've changed my qtranslate configuration. I access to the english version now with: http://en.mydomain.com/news/this-is-a-post In search engines I have my pages indexed with this structure: ...
1
vote
0answers
53 views

Wordpress translation loading english file

I am trying to translate a wordpress site but whatever I do the english file is always loaded. In functions.php I've set load_theme_textdomain('twentyeleven', get_template_directory() . ...
2
votes
2answers
368 views

Differenc between bloginfo('home') and home_url() and site_url()

I have been reading through Codex and other SO and SE posts regarding this. But I am confused. I used home_url() and site_url() to linking the site's home and it gave same results. As I was using ...
0
votes
2answers
351 views

MF2 and qTranslate problem with custom post types post titles

I'm creating custom post types with Magic Fields v2.0.1 and i use the qTranslate v2.5.32 plugin for a second language on Wordpress 3.4.2. The problem is that on Magic Fields in the settings of the ...
1
vote
1answer
688 views

How to force Wordpress to temporarily switch locale (using qTranslate)?

I have a multi-language store running WooCommerce and qTranslate, and am trying to setup multi-language customer emails. The problem is, the "order complete" email gets sent from the admin backend, ...
2
votes
0answers
1k views

Qtranslate + Advanced Custom Fields: how to have a multilanguage wysiwyg editor?

This is my setup: Wordpress: 3.4.2 qTranslate: 2.5.32 Advanced Custom Field: 3.5.1 i've also installed qTranslate extension: 1.1.1 but I don't know how/if it works... How can I have a ...
1
vote
1answer
54 views

How can i change the texts of plugin (created by me) in wordpress admin?

i have a created a contact us plugin, i want to change that name of the plugin "contact us" in Hindi. I already created languages folder in my wordpress, and maintaining hi_IN.mo, hi_IN.po files.
4
votes
1answer
1k views

Adding a filter to qTranslate to change display of language chooser

This is a problem I am having with qTranslate, but I suppose the solution is more of an instruction in how Wordpress hooks and filters work. Instead of using the qTranslate widget, I am using the ...
2
votes
1answer
556 views

How to Translate Contact Form 7 using qTranslate?

I'm using Contact Form 7 for my forms and also qTranslate to translate my website. I would like to translate all my fields and for that I used: <!--:en-->First Name ...
0
votes
1answer
1k views

Translate widget titles using qTranslate plugin

I'm actually using the qTranslate plugin to translate my website. It works really well with everything except one thing. the titles of my sidebar widgets. Actually, to translate some words we need to ...
0
votes
1answer
217 views

qtranslate (language definition) when translation for selected language doesn't exist

I'm using qtranslate, and whenever selected language translation doesn't exists it outputs text like this: (English) This is english text. So it gives me (language) string inside the output. I'd like ...
1
vote
1answer
120 views

How to find when qtranslate plugin's language changes?

I used qtranslate for make my website multilingual, In fact this plugin just make an option for my content to has another translate, but how can i use it in my code? for example: if ( $language == ...
0
votes
1answer
467 views

How to determine current active language in qtranslate plugin?

I have a situation where I want to give specific style to my Navigation Menu when the website is in German language. My website works well in English language but when I switch to German, it causes a ...
0
votes
1answer
566 views

qtranslate quick tags don't work in custom fields

Anyone familiar with qtranslate? Do you know how to enable custom field quick tag support? at the moment it just prints out ...
0
votes
1answer
1k views

custom query/get_posts and qtranslate (url not language specific)

I'm using allot of custom queries, and qtranslate. Qtranslate works with everything that has home url in it. But for posts /thumb permalinks if I change language to Russian for example links remain ...
3
votes
3answers
758 views

Titles in my sidebar widget appear in all languages - with qtranslate

So here's my code, using the qTranslate plugin: query_posts(array('post_type' => 'uk_blog', 'numberposts' => 2)); $i = 0; while(have_posts()): the_post($post);?> <div ...
-1
votes
2answers
138 views

How to make other language version of WP site [closed]

I've seen various automatic translate plugins for Wordpress site, Google also provides good translate mechanism for any page of your site, but what I need is my site (non-English, 13 static pages) - ...
0
votes
1answer
771 views

wordpress qtranslate editor text is not working

I have installed qtranslate on my wordpress site, it all works fine, but sometimes the content editor does not show the text, When I force refresh the page a few times (Ctrl + r) eventually the text ...
0
votes
1answer
527 views

qtranslate is not working properly

I have installed qtranslate in my local, it does not show the translated content, so there are two question if anybody have used this plugin. do i need to put the translated text by my self or ...
0
votes
1answer
299 views

Applying post title filter: Last Viewed Posts + qTranslate

I'm using Last Viewed Posts (LVP) plugin on a qTranslate-enabled website. LVP shows post titles in both languages. I found this hint: titles in recent posts appear together in all languages with ...
-2
votes
1answer
56 views

how to use transliteration plugin wordpress? [closed]

I want to write articles in kannada language. I tried to do it using google transliteration software. Still i can see the english as the option used for posting the posts. please throw some light on ...
2
votes
3answers
1k views

qTranslate: Hide untranslated content

I know qTranslate has the option to hide untranslated content, but that doesn't seem to work. I.e: I have a website with three languages: Dutch, French and English. There is one particular page that ...
1
vote
1answer
2k views

Custom Meta Field not Working with qTranslate

I am running the newest WordPress and qTranslate. I have made a page that enables some custom fields that are working ok. qTranslate enables languages like tabs when editing a page. But this ...
1
vote
0answers
145 views

if specfic language content is empty then hide language flag by qTranslate

My site has 2 more language but one language content is empty or one of my page's content is empty for specific one language. So i want to hide or don't show language flag in my wordpress site. Is it ...
1
vote
0answers
281 views

qtranslate and content

I have the nostalgia theme from themeforest. I am trying to convert it to multilingual using qtranslate, which it does translate the links and the page names, but for some reason it brings me back the ...
0
votes
1answer
438 views

Extra richtext admin textfield for custom posttype with toolbar tabs?

I am trying to add an extra rich text input field (like so, http://wordpress.org/support/topic/how-can-i-use-the-tinymce-editor-for-fields-in-my-custom-post-type) So just by adding the class ...
0
votes
1answer
342 views

My custom fields aren't getting translated [closed]

I've been using a class to build custom fields in my WP themes, it basically allows me to create custom text, radio, dropdown fields, etc and it's working fine. However I created a text custom field ...
1
vote
1answer
165 views

Generate multiple goo.gl shortlinks for qtranslate bilingual blog

I'm working on revamping my personal blog with a custom built theme and making it bilingual with the help of qtranslate. I've gotten to a grinding halt when it comes to automatically generating the ...
0
votes
1answer
3k views

Add qtranslate language select box to menu

I can't find any info on how to operate qtranslate and add the select box to change language to the right of my header navigation. Any ideas?
0
votes
1answer
92 views

Problems with Big Picture theme [closed]

I have to modify a Wordpress website created by other developers. I have no contact with them. They used the wordpress theme Big Picture. I've never used it before and I have some doubts. 1) This ...
3
votes
1answer
4k views

qTranslate get content by language

How do you get the content by id and by specific language? I need to display two specific language content in a page, regardless of the session's language. So far, this is my progress: this works ...
0
votes
1answer
2k views

titles in recent posts appear together in all languages with qtranslate

I´ve been dealing with a qtranslate problem (Im using the twentyten theme) and i hope you cna help me, I´ve been searching on forums and sites but to no vail (their solution is for other them called ...
0
votes
1answer
166 views

Display a post attachment depending on the caption

I would like to display automatically a post attachment (PDF) depending on the language of my blog (french and english). When the post is displaying in french version, I would like display the french ...
2
votes
1answer
247 views

Is it possible to get a different header.php on language switch with qtranslate?

the problem is that on home page I have a lot of code which is added through header.php and it is not amendable through admin panel. What I want to do is to switch header files on language switch. ...
1
vote
1answer
381 views

qTranslate conflicts with SEO-plugins

I have an issue with a clients site. I installed the Yoast SEO-plugin (which i find to be great), but when i activate it i get lot's of error messages (See below). ...
0
votes
1answer
348 views

Date time doesn't show correctly in qTranslate

I've used qTranslate to enable multiple languages on site. It works fine except for date-time for english language. Here are screenshots: Serbian: English: Languages settings looks like: How ...
1
vote
1answer
328 views

Multi language site

I found that two most popular plugins for multi language sites are WMPL and qTranslate. First one is commercial, so this is not option, and second doesn't have ability to translate widgets in ...
1
vote
0answers
288 views

Image caption with apostrophe breaks the text with qTranslate [closed]

I created my own theme and I use on two different websites, along with a very few plugins (among them, qTranslate!). I noticed that recently (I don't think it was happening before) that all my image ...
0
votes
1answer
869 views

How to use get_page_by_title() with qTranslate?

Any idea how I can use the WP function get_page_by_title() with qTranslate installed? for example: $page_contact = get_page_by_title( '_e("[:en]contact");' ,'page' ); $page_contact_ID = ...
0
votes
1answer
2k views

qTranslate 2.5.28 and WordPress 3.3.1 issues

Anybody knows how to solve the issues in qTranslate 2.5.28 with WordPress 3.3.1? http://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=3045 ...
1
vote
2answers
802 views

disable qtranslate by post type in admin + disable per page / post ID on front-end

I'm trying to find a way to selectively disable qtranslate - I would like to be able to show certain static content on my site in 4 langauges, but to then only have a single language ( and a ...
1
vote
1answer
2k views

qTranslate with my own theme and settings

Basically I have my own theme and my own settings page. In that settings page I have a textfield which contains a Welcome Text to show at the top of the website. Now, I want this theme to works with ...
2
votes
2answers
4k views

Multi-language permalink in qtranslate

I am using qtranslate plugin for my WordPress site to make it a multi-language site. Now I have got a requirement like For English the url should look like www.sitename.com/contact-en For French the ...

1 2