• Resolved mattshepherd

    (@mattshepherd)


    Hi all,

    So I’ve created a Child Theme in twentyseventeen with a simple style.css file and the following as my functions.php:

    <?php
    add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
    function enqueue_child_theme_styles() {
      wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }
    ?>

    “Theme Options” isn’t appearing in my Customizer when I activate the child theme. I have…

    1. Multiple pages (ten)
    2. Set a static page as my home page
    3. Hard refreshed the Customizer

    Is there something else I’m missing? I really just want “one column” display on my pages.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mattshepherd

    (@mattshepherd)

    Ten minutes later, it just… appeared. Leaving this up to counsel people having the same problem to just, I don’t know, be patient? I don’t know why it took quite a while for it to kick in but it eventually did.

    • This reply was modified 6 years, 8 months ago by mattshepherd. Reason: Marking as resolved

    This is obviously a cache being reset, either on the server or in your browser. Whenever changes are not being shown, a cache seems to be the culprit.

    Do check where your cache(e) is(are) for future reference.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Getting Theme Options in a Child Theme’ is closed to new replies.