I am creating a site in Wordpress,It is basically an english site but when user clicks on translate it translate it into Arabic.There is problem of ltr and rtl,How can I solve that.I am using qtranslate plugin right now.Same is the case with urdu ,kurdish languages.
Anyone who can help me with this
please see attached image
Thanks
|
|
|||||||||||
|
closed as off topic by bmargulies, Blachshma, Will♦ Dec 24 '12 at 21:20
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
It seems this wordpress plugin is inserting a language direction and name into the
OR
If I understand you the plugin is not rendering correct First OptionOne option is to use javascript to fix this. simply we detect the
Now you can style that elements in the theme css file by prefixing that
. Second OptionAs suggested by the other answer Use php to insert that class name into the
Now use the same css to style you elements |
|||||||
|
|
One simple but inefficient way is to check the language with PHP in your theme's header file and if it's Arabic or another RTL language you can add the dir="rtl" to your HTML or any tag you want. I realized that qTranslate has a GET method mode and adds something like EDIT You can add something like this in your theme's header file. (You can find this file from path_to_wordpress/wp-content/themes/your_theme/header.php), It's either called header.php or something similar. find the
|
|||||||
|