child index.php does not overwrite parent index.php in twenty fourteen theme

The way you enqueueing your stylesheets are wrong. Someone very ignorant keeps changing my edit in the codex. The way you are doing this loads your child stylesheet twice. I have already done a post on this that you should check out here The correct way is add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ ); function theme_enqueue_styles() { wp_enqueue_style( … Read more

Need help installing Hoffman child theme

As jdm2112 suggested, the WP Codex had a well-detailed explanation. A few observations based on your question: The text domain shouldn’t contain spaces The “Template” value should be the same as the directory name of your parent theme (check it) Make sure the child theme directory name is different from the parent theme, convention is … Read more