I'm sorry to bother you with this kind of problem, but I did't manage to solve it.
Well, I'm going to develop a new website based on Quark theme (latest version), I create a Child theme from Quark Quick Start just like I did a lot of times now but I get a white screen (php error?) if I activate it. The strange thing is that if I put the Child Theme in an old version of Quark it works fine. I also quickly compared Quark old version with new one but I did't see any significant differences.
This is what I've done:
I crated a folder "Quark-child" and put functions.php and style.css :
- Code: Select all
<?php
add_action('wp_enqueue_scripts', 'child_theme_css');
function child_theme_css() {
wp_enqueue_style('parent-theme-css', get_template_directory_uri() . '/style.css');
}
- Code: Select all
/*
Theme Name: Quark Theme Child
Template: Quark
Version: 1.0.0
Text Domain: Quark-child
*/
Thanks for any help