Skip to content

Instantly share code, notes, and snippets.

@meysampg
Created September 2, 2015 06:19
Show Gist options
  • Save meysampg/0a6524b13b8be8e6205a to your computer and use it in GitHub Desktop.
Save meysampg/0a6524b13b8be8e6205a to your computer and use it in GitHub Desktop.
Automatic load rtl.css for RTL languages in PrestaShop
{* Check for RTL langguages and automatically load rtl.css from CSS folder of theme for RTL languages. *}
{foreach from=$languages key=k item=language name="languages"}
{if ($cookie->id_lang == $language.id_lang) && (1 == $language.is_rtl)}
<link rel="stylesheet" href="{$css_dir}rtl.css" type="text/css" media="screen" />
{break}
{/if}
{/foreach}
@meysampg
Copy link
Author

meysampg commented Sep 2, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment