Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #288357

    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

    #288536

    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

    #288651
    This reply has been marked as private.
    #288744

    Hey!

    Thank you for the update.

    Do you mind if we take a look at the actual page with the “dot” issue?

    Regards,
    Ismael

    #288901
    This reply has been marked as private.
    #288972

    Hi!

    Glad you figured it out! Do you mind sharing your solution? :)

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.