• Hi thanks for the awesome theme. I have an issue regarding the child theme. It doesnt change colors as per customization eg the font-awesome icons have no color!!

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter skipcheru

    (@skipcheru)

    This is the site site link which uses child theme. Notice blue colors instead of green which i choose.

    Theme Author lyrathemes

    (@lyrathemes)

    skipcheru – I do not see anything blue on that page. However, the font-awesome icons are not loading. See this screenshot for help https://prntscr.com/cn1ltu

    Thread Starter skipcheru

    (@skipcheru)

    sorry i used theme, here is the screen shot.Screen shot and also another screenshot2

    • This reply was modified 8 years, 6 months ago by skipcheru.
    • This reply was modified 8 years, 6 months ago by skipcheru.
    Theme Author lyrathemes

    (@lyrathemes)

    skipcheru – Please give me till the end of the day to set up a child theme to test this.

    Thread Starter skipcheru

    (@skipcheru)

    Sure i will appreciate. Thanks

    Theme Author lyrathemes

    (@lyrathemes)

    skipcheru, I found a bug! ?? We’ll be updating Vega to allow for Child Themes to correctly load the color scheme. Please give us till the end of the week to push the update. Sorry for the inconvenience this may have caused you!

    Thread Starter skipcheru

    (@skipcheru)

    Please do because it’s a really nice theme and i wanna use it on my site.

    Theme Author lyrathemes

    (@lyrathemes)

    The theme has been updated. Your child theme should now be loading the color scheme correctly. Let me know if you have any questions.

    Thread Starter skipcheru

    (@skipcheru)

    Hey Lyra thanks for the update and reply. I have tested it and i found another bug. I think the css is not loaded well for each component. Compare these screenshots of parent and child theme. eg parent theme form vs child theme form . Also this parent button and font vs child button and font .

    • This reply was modified 8 years, 5 months ago by skipcheru. Reason: wrong url
    Theme Author lyrathemes

    (@lyrathemes)

    This isn’t really a bug but rather the way dependencies are loaded. Please make sure you load the parent and child stylesheets like follows:

    
    add_action( 'wp_enqueue_scripts', 'vega_child_enqueue_styles' );
    function vega_child_enqueue_styles() {
        $parent_style = 'vega-wp-style';
        $deps = array('bootstrap', 'font-awesome', 'bootstrap-social');
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' , $deps);
        wp_enqueue_style( 'vega-wp-style-child',
            get_stylesheet_directory_uri() . '/style.css',
            array( $parent_style ),
            wp_get_theme()->get('Version')
        );
    }
    
Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Vega Child Theme’ is closed to new replies.