Hi,
i have problem in css with the pluning.
you can see
i have add:
<html dir="rtl" lang="ar-AR">
the langage of arbic is with function so i must keep my admin langage in french.
function lang_theme_setup()
{
load_theme_textdomain('dazzling', get_template_directory() . '/languages');
}
function change_locale(){ return 'ar_AR'; }
add_action('after_setup_theme', 'lang_theme_setup');
add_filter( 'locale', 'change_locale' );
load_textdomain('dazzling', get_template_directory().'/languages/ar_AR.mo');
load_default_textdomain();
function dazzling_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Dazzling, use a find and replace
* to change 'dazzling' to the name of your theme in all the template files
*/
/*load_theme_textdomain( 'dazzling', get_template_directory() . '/languages' );*/
add_action('after_setup_theme', 'lang_theme_setup');
add_filter( 'locale', 'change_locale' );
load_textdomain('dazzling', get_template_directory().'/languages/ar_AR.mo');
load_default_textdomain();
i have add also css
#wpcomm .wc-comment-footer{
text-align: left;
}
#wpcomm .wc-comment-text{
text-align: right !important;
}
#wpcomm .wc-reply { margin-bottom: 0; margin-left: 0px!important; margin-right: 40px!important; margin-top: 10px; }
#wpcomm .wc_comment_level-3{margin-left: 0px!important; margin-right:40px!important;}
#wpcomm .wc_comment_level-4{margin-left: 0px!important; margin-right:40px!important;}
#wpcomm .wc_comment_level-5{margin-left: 0px!important; margin-right:40px!important;}