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 trialSean Wrigley
500 PointsTarget file already exists when creating a Child Theme
Hi all. I'm trying to setup my child theme through FileZilla. When I drag and drop my wordpress file from Local site to Remote site a whole lot of the target files already exist.
Actions: Overwrite Overwrite if source newer Overwrite if different size Overwrite if different size or source newer Resume Rename Skip
This means I cant access my site or the admin panel.
Thanks in advance
2 Answers
Andrew Molloy
37,259 PointsWhat is it you're transferring? If it's just the child theme are you placing it in wp-content/themes within it's own unique folder?
kevin jordan
11,353 PointsHey Sean -
Maybe I can help clarify Andrew's answer. The only thing that you need to do to set up a child theme is to add a folder to your wp-content/themes folder - you need to name it -> [parent theme name] - child.
The only file that you need to have in that folder is a style.css.
Within that style.css file however you need to make sure you have the proper comments format at the top of the page so that WP core can make the connection between your child theme and the parent theme template. Here's the css format you need [example link]http://codex.wordpress.org/Child_Themes
Hope this helps !