Hello
CB is not load rtl.css in RTL Language site (like Persian site ) !
file load from url: example.com/components/com_comprofiler/plugin/templates/default/
rtl.css/rtl.css !!!
please slove this problem in the next version;
File: administrator/components/com_comprofiler/comprofiler.class.php
Line: 1512
Code:
if ( file_exists( selectTemplate( 'absolute_path' ) ) ) {
$rtlPath = selectTemplate() . 'rtl.css';
} else {
$rtlPath = selectTemplate( 'live_site', 'default' );
}
$_CB_framework->document->addHeadStyleSheet( $rtlPath . '/rtl.css', false, $media );
}
change to this:
Code:
if ( file_exists( selectTemplate( 'absolute_path' ) ) ) {
$rtlPath = selectTemplate();
} else {
$rtlPath = selectTemplate( 'live_site', 'default' );
}
$_CB_framework->document->addHeadStyleSheet( $rtlPath . 'rtl.css', false, $media );
}
(Thanks for mouchoon)
Best Regard
Alireza