سلام من یک بسته نصبی جوملا 3 دانلود کردم و روی لوکال نصب کردم ...
در توضیحات قالب نوشته شده که RTL ساپورت میکنه اما وقتی که زبان فارسی را انتخاب میکنم RTL نمیشه ...
محتویات فایل index.php
<!DOCTYPE html>
<?php
/* Design by VTEM http://www.vtem.net All Rights Reserved */
defined( '_JEXEC' ) or die( 'Restricted access' );
if(!defined('DS')){define('DS',DIRECTORY_SEPARATOR);}
$vtOutout = '';
$vtOutout .= '<html xml:lang="'.$this->language.'" lang="'.$this->language.'">';
include_once(dirname(__FILE__).DS.'vtemtools'.DS.'default.php');
include_once(dirname(__FILE__).DS.'vtemtools'.DS.'css_var.php');
$vtOutout .= '<body id="vtem" class="'.$pageoption.' opt-'.$pageview.' menuid'.$pageID.' template-'.$TemplateStyle.' logo-'.$logo.' '.css_browser_selector().'">';
$vtOutout .= '<div id="vt_wrapper" class="vt_wrapper">';
///// VTEMShowModule('Position Name', 'Position style', 'Custom Class')
$vtOutout .= VTEMShowModule('drawer', 'vt_xhtml', 'container').
VTEMShowModule('header', 'vt_xhtml', 'container').
VTEMShowModule('top', 'vt_xhtml', 'vt_container').
VTEMShowModule('showcase', 'vt_xhtml', 'container');
$vtOutout .= '<main class="vt_main container clearfix">'.$component.'</main>';
$vtOutout .= VTEMShowModule('feature', 'vt_xhtml', 'container').
VTEMShowModule('bottom', 'vt_xhtml', 'container').
VTEMShowModule('footer', 'vt_xhtml', 'container');
$vtOutout .= '<footer class="vt_wrapper_copyright vt_section">'.
'<div class="container clearfix">'.
'<div class="col-md-12">'.($totop ? '<a id="gotop" href="#vtem" title="Back to Top"><span><i class="fa fa-angle-up"> </i></span></a>' : '').$vtcopyright.
'</div>'.
'</div>'.
'</footer>';
$vtOutout .= '</div>';
include_once(dirname(__FILE__).DS.'vtemtools'.DS.'debug.php');
$vtOutout .='</body>';
$vtOutout .='</html>';
echo $vtOutout;
?>
محتویات فایل component.php
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />
<?php if($this->direction == 'rtl') : ?>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template_rtl.css" type="text/css" />
<?php endif; ?>
<style type="text/css">
.contentpane_vtem_popup .createdate{background:#999;}
.contentpane_vtem_popup .button{background:#333;}
</style>
</head>
<body class="contentpane_vtem_popup" style="background:#f5f5f5; padding:10px;">
<jdoc:include type="message" />
<jdoc:include type="component" />
</body>
</html>
با وجود این که کد :
<?php if($this->direction == 'rtl') : ?>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template_rtl.css" type="text/css" />
<?php endif; ?>
موجوده اما در حالتی که زبان فارسی انتخاب میشه در سایت وقتی view-source را میزنم فایل template_rtl.css لود نمیشه ...
مشکل از کجاست ؟؟
ممنون میشم راهنمایی بفرمایید ..
با تشکر