情況係個 default 下 index.php 有行
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />
指示個 system 去邊度搵 css settings.
因為我需要唔同 language時用唔同 css settings, 所以會預備兩個 css files, file名包含 <?php echo $this->language ?>, 再將上面個行改成下面咁
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.
<?php echo $this->language ?>.css" type="text/css" />
部機就會自然搵番啱個set css 黎用.
問題係我唔識點樣睇 <?php echo $this->language ?> echo 出黎秋 string 係乜, 唔可以幫個兩個 css files 定名.