• Hi, I create child theme, but on all pages expect home page I can see Header text(in settings I uncheck this), where can I repair it?

    and in archive I can see only part of posts, it’s possible to change it to full posts?

Viewing 2 replies - 1 through 2 (of 2 total)
  • can you share link? so i can see what you did?, Child theme will have function.php

    Thread Starter marvvincz

    (@marvvincz)

    Hi, now I use another theme, because have some trouble with ribosome, but I want change it ….
    here is my function.php

    <?php
    add_action( ‘wp_enqueue_scripts’, ‘your_child_theme_enqueue_styles’ );
    function your_child_theme_enqueue_styles() {
    // Parent style id – replace your child theme name
    $parent_style = ‘parent-style’;

    // Enqueue Parent theme’s style
    wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
    // Enqueue Child theme’s style
    wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’, array( $parent_style ) );

    }

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘child’ is closed to new replies.