• Resolved jurasjo

    (@jurasjo)


    Codestyling Localization doesn’t see child theme if there are files other than style.css in child theme.

    Any idea is this is a problem with hueman or with Codestyling Localization ?

Viewing 1 replies (of 1 total)
  • Thread Starter jurasjo

    (@jurasjo)

    Ok i have added that code to custom functions.php

    if ( ! function_exists( 'alx_load' ) ) {
    
    	function alx_load() {
    		// Load theme languages
    		load_theme_textdomain( 'hueman', get_template_directory().'/languages' );
    		load_child_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' );
    	}
    
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Codestyling Localization’ is closed to new replies.