Hi,
I have created multilanguage site with Enfold. I have paid for WPML. I have succesfully translated to german and english language. Today I tried arabic. The problem is that the text is still in most cases LTR. Even when I have arabic text RTL – I have problem with dots or question marks.
Can you give any advice?
Thanks
Adam
Hi BW-Topas!
Please try adding following code to Functions.php file in Appearance > Editor
add_action('wp_enqueue_scripts', 'custom_rtl_include');
function custom_rtl_include() {
$template_url = get_template_directory_uri();
if(ICL_LANGUAGE_CODE == "ar"){
wp_enqueue_style( 'avia-rtl', $template_url."/css/rtl.css", array(), '1', 'screen' );
}
}
Regards,
Yigit
Hey!
Thank you for the update.
Do you mind if we take a look at the actual page with the “dot” issue?
Regards,
Ismael