Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Anyone familiar with qtranslate? Do you know how to enable custom field quick tag support? at the moment it just prints out <!--:ge-->სახელი<!--:--><!--:en-->name<!--:--><!--:ru-->imia<!--:--> without actually translating anything.

share|improve this question

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.