Breaks appear on site but it's impossible to edit content when editor shows different spacing...
I am using latest wp and development version of qtranslate (this bug was also in last qtranslate version).
AFAIK there's trhee fixes:
1. Following code in theme functions.php (Apparently it works only for pages not for posts wich will display double breaks (adds extra ) instead no brakes...):
function cbnet_tinymce_config( $init ) {
// Don't remove line breaks
$init['remove_linebreaks'] = false;
// Convert newline characters to BR tags
$init['convert_newlines_to_brs'] = true;
// Do not remove redundant BR tags
$init['remove_redundant_brs'] = false;
// Pass $init back to WordPress
return $init;
}
add_filter('tiny_mce_before_init', 'cbnet_tinymce_config');
2. Follow instructions on this link, read comments too (it will mess up current spacing and you have to manually fix all spacing on site first time after this patch):
http://www.teslina.com/748/wordpress/qt ... ax-bugfix/
3. Downgrade to version 2.5.27 (possible problems with language duplication/overwriting):
http://wordpress.org/extend/plugins/qtr ... /download/
Any idea when qtranslate will work normally?
