Hi Alexander.
1. yes, the language files is in the language folder in the child theme
2. below is whole code from functions.php, I change only this file.
‘<?php
/* ————————————————————————- *
* Custom functions
/* ————————————————————————- */
// Add your custom functions here, or overwrite existing ones. Read more how to use:
// https://codex.www.ads-software.com/Child_Themes
function alx_styles() {
wp_enqueue_style( ‘style’, get_stylesheet_uri() );
if ( ot_get_option(‘responsive’) != ‘off’ ) { wp_enqueue_style( ‘responsive’, get_stylesheet_directory_uri().’/responsive.css’ ); }
if ( ot_get_option(‘custom’) == ‘on’ ) { wp_enqueue_style( ‘custom’, get_template_directory_uri().’/custom.css’ ); }
wp_enqueue_style( ‘font-awesome’, get_template_directory_uri().’/fonts/font-awesome.min.css’ );
}
function alx_load() {
// Load theme languages
load_theme_textdomain( ‘hueman’, get_stylesheet_directory().’/languages’ );
// Load theme options and meta boxes
load_template( get_template_directory() . ‘/functions/theme-options.php’ );
load_template( get_template_directory() . ‘/functions/meta-boxes.php’ );
// Load custom widgets
load_template( get_template_directory() . ‘/functions/widgets/alx-tabs.php’ );
load_template( get_template_directory() . ‘/functions/widgets/alx-video.php’ );
load_template( get_template_directory() . ‘/functions/widgets/alx-posts.php’ );
// Load custom shortcodes
load_template( get_template_directory() . ‘/functions/shortcodes.php’ );
// Load dynamic styles
load_template( get_template_directory() . ‘/functions/dynamic-styles.php’ );
// Load TGM plugin activation
load_template( get_template_directory() . ‘/functions/class-tgm-plugin-activation.php’ );
}
‘
3. .mo and .po file looks correct, I have checked a saved are one more
4. child theme is active
Cache is not active.
Alexander, many thanx for your answer.
Martin.