Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress How to Make a Website with WordPress Customizing WordPress Themes How to Make Child Themes

JUSANG YOU
JUSANG YOU
7,857 Points

What is this massage mean from WORDPRESS? //The parent theme is missing. Please install the "Ultra" parent theme.//

What is this massage mean from WORDPRESS? //The parent theme is missing. Please install the "Ultra" parent theme.// I made child folder of Ultra(UltraChild)theme and Wordpress show me this msg.

I included index.php, style.css, screenshot.jpg from parent folder. And reivse its style.css file path from Ultra folder.

Hazel Kenady
seal-mask
.a{fill-rule:evenodd;}techdegree
Hazel Kenady
Front End Web Development Techdegree Student 16,744 Points

Delete the index.php from the child theme. You don't need it. The only two files you really need to create a child theme are style.css and the screenshot for now.

Is your parent folder named "Ultra" or "ultra"? If you have the template listed wrong (case sensitive), this may cause the error message you are seeing. So if the parent folder is actually "ultra" you will need to spell it that way in the CSS line for "template".

Does your style.css look something like the following?

Theme Name: Ultra Child Theme
Theme URI: 
Description: Child theme for Ultra
Author: 
Author URI: 
Template: ultra
Version 1.0
*/

@import "../ultra/style.css"; 

1 Answer