Hi.
I’m using the flexform-child theme and having no luck getting the translated file available in
\flexform-child\language\
to work.
I’m adding the following to the flexform-child\functions.php file:
load_theme_textdomain( 'flexform', get_stylesheet_directory() . '/language' );
and also trying with:
add_action( 'after_setup_theme', 'my_child_theme_setup' );
function my_child_theme_setup() {
load_child_theme_textdomain( 'flexform', get_stylesheet_directory() . '/language' );
}
as found on the web…
Neither of these get the theme translated.
Help would be appreciated, many thanks.