• Resolved stevelush

    (@stevelush)


    I created folder ultra-child with style.css containing:

    /*
    Theme Name: Ultra Child
    Template: ultra
    Version: 1.0.0
    */

    /* Customization begins here
    */

    When I activate the child theme, my home page displays a listing of all pages and posts above the header…

    Skip to content
    Sportsman’s Rights – Your Voice/One Fight!

    Affiliate Area
    Affiliate Terms of Use
    Contact Us

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter stevelush

    (@stevelush)

    I added the following to functions.php:

    /**
    * Enqueue styles.
    */
    add_action( ‘wp_enqueue_scripts’, ‘puro_child_styles’ );

    function puro_child_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’, get_stylesheet_uri(), array( ‘parent-style’ ) );
    }

    That fixed the problem above. Now the Top Menu has all posts and pages instead of the ones listed in the Menu

    Thread Starter stevelush

    (@stevelush)

    Solved. Had to set Primay Menu as well as Top Bar Menu to just have pages I wanted.

    Theme Author Andrew Misplon

    (@misplon)

    Hi @stevelush

    Sorry I wasn’t able to reply sooner, I was out of action yesterday. Really glad to hear you made progress on this. Thanks for keeping the thread updated. If anything else comes up, please, let me know.

    All the best with your site ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘child theme shows sitemap at top of home page’ is closed to new replies.