Hi,
I’m trying to translate the theme but run into some issues:
1. Not all strings translated in the PO file work. For example “sub total” in the cart menu.
2. Load child theme text domain is not working when placing nl_NL files in child theme languages directory.
I’m using this code in child theme functions.php:
function my_child_theme_setup() {
load_child_theme_textdomain( ‘mychildtheme’, get_stylesheet_directory() . ‘/languages’ );
}
add_action( ‘after_setup_theme’, ‘my_child_theme_setup’ );
?>
Cheers,
Jaap