I use opencart I want to load stylesheet-rtl.css when language is ar and stylesheet.css when language is en
i tried this and some others i found in internet but it doesn't work ?
<?php if($direction == "rtl"){?>
<link href="catalog/view/theme/tt_palora1/stylesheet/style.css" rel="stylesheet">
<?php } else { ?>
<link href="catalog/view/theme/tt_palora1/stylesheet/stylesheet.css" rel="stylesheet">
<?php }?>
any help please ?