This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

1
  1. Alex S Staff 8 years, 6 months ago

    Hi Nik,

    Please use following PHP for your functions.php:

    <?php
    /**
     * Enqueue the parent theme stylesheet.
     */
    function north_child_enqueue_parent_style() {
    	wp_enqueue_style( 'north-parent-style', get_template_directory_uri() . '/style.css' );
    	wp_enqueue_style( 'north-child-style', get_stylesheet_uri(), array( 'north-parent-style' ) );
    }
    add_action( 'wp_enqueue_scripts', 'north_child_enqueue_parent_style', 8 );

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread