Your account expired support, please renew to get your support.

Home Forums Themes Support Claue Child theme

Viewing 3 reply threads
  • Author
    Posts
    • #37130
      jonkristen
      Support Expired

      Hi,

      I can´t get my child theme css to load.  It´s probably related to enqueing, but I can´t work out what is wrong.

      Heres the code from functions.php in claue-child

      add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
      function my_theme_enqueue_styles() {
          $parenthandle = 'Claue-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
          $theme = wp_get_theme();
          wp_enqueue_style( $parenthandle, get_template_directory_uri() . '/style.css', 
              array(),  // if the parent theme code has a dependency, copy it to here
              $theme->parent()->get('Version')
          );
          wp_enqueue_style( 'child-style', get_stylesheet_uri() . '/style.css',
              array( $parenthandle ),
              $theme->get('Version') // this only works if you have Version in the style header
          );
      }
      
      What should the code be?
      
      Best regards,
      Jon Kristen
    • #37132
      Harry
      Support Expired

      Hi John,

      The claue-child.zip included in the theme package.

      Please download file on ThemeForest and get it.

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #37141
      Harry
      Support Expired

      Hi John,

      I tried add CSS to child theme https://prnt.sc/t6v9qx and clear cache. It work well.

      Please check again. And reply on this topic so we can track your issue and help you faster.

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #37205
      jonkristen
      Support Expired

      Hi,

      I didn´t clear cache. That´s probably what fooled me.

      Best regards,

      Jon Kristen

Viewing 3 reply threads

You must be logged in to reply to this topic.