Hi Asplash,
got the solution 😀
Just edit your default.php(or your own template) inside the list-category-posts/templates folder and replace the line:
$lcp_display_output .= $this->get_post_title($single);
with
if (function_exists('qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')) {
$output = $this->get_post_title($single);
$lcp_display_output .= qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($output);
} else
$lcp_display_output .= $this->get_post_title($single);
Greets Adrian
hopes it solves your problem too, Asplash
Hi could not yet figure out if it works with list-category-posts
but this is a link to some more information about the problem
Making Plugin **** work with qTranslate
greets Adrian,
any hints welcome!!!
Same Problem to me.
All different titles are concatenated to one big title :(.
Trying to figure out where the catlist does it, or how to speparate the titles as they should be displayed.
Thanks hope to get a answer, Adrian