Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • in reply to: Overriding translation with child theme #163769
    matteth
    Member
    Post count: 3

    I just had the same problem, and made it work. It seems that the translations have use same textdomain as the parent theme. You need to translate both the “swiftframework” domain, and “woocommerce”.

    This works for me, loading the same translations twice …

    <?php
    function my_child_theme_setup() {
        load_child_theme_textdomain( 'swiftframework', get_stylesheet_directory() . '/languages' );
    load_child_theme_textdomain( 'woocommerce', get_stylesheet_directory() . '/languages' );
    }
    add_action( 'after_setup_theme', 'my_child_theme_setup' );
    ?>
    in reply to: Variation dropdown issue, Will V1.3.4 fix? #29807
    matteth
    Member
    Post count: 3

    I had this issue, even after the update to 1.3.4. It turned out that the functions.js file hadn’t been updated when I updated through the WordPress admin. When I replaced the functions.js, manually from a downloaded copy of the theme, the issue was solved.

Viewing 2 posts - 1 through 2 (of 2 total)