Child Theme activates, but nothing from parent theme displays (MAMP, Multisite)

I searched for a solution for this problem, but cannot find an answer (or exact replica of the problem)

Basically, I set up Multisite on MAMP Pro (Apache port 80, MySQL Port 3306). The set up was smooth, and I created a new site via a subdirectory.

Read More

The parent theme loads fine. I created a child theme, and it activates (it doesn’t show a broken message). On the Appearance page it shows the message “This theme requires the parent theme”, but underneath the Theme Description.

However when I view the front page of the site, the page is blank, and there is no html at all.

Would could possibly be the error? I spent a few hours on this already and it’s not going really well. Code of child theme, only CSS, no functions.php or other php files in the child theme folder.

/*
Theme Name: Confit Child Theme
Author: Automattic
Template: confit
Description: Confit Child Theme 1
Version: 1.0
*/

@import url('../confit/style.css');
  • Should also mention that the parent functions are not loading either.

Thanks!

Related posts

Leave a Reply

1 comment

  1. Basically I am using a child theme as the default theme every time a new blog is created. In the wp-config.php file – I was calling

    define('WP_DEFAULT_THEME', 'confit-childtheme');
    define( 'TEMPLATEPATH', '/public_html/wp-content/themes/confit');
    

    I read that when you are using a child theme as the default install theme, you have to reference the parent theme folder. This was the error.

    The error I received while debugging was
    Constant TEMPLATEPATH already defined in /Volumes/Home/Websites/wp-includes/default-constants.php

    So I removed the 2nd line, and the child theme displays correctly while also being the default theme upon new blog installs.

    Thank you brasofilo