最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

installation - Reporting Broken Theme event though upload was success

matteradmin10PV0评论

I don't understand what is missing when the Install is reporting success, but the Themes page is reporting a Broken Theme. styles.css and functions.php included below.

Thank you, in advance, for your help!

When I installed the child theme, it seemed to find the parent.

Installing Theme from uploaded file: wp-velux-child.zip
Unpacking the package…

Installing the theme…

This theme requires a parent theme. Checking if it is installed…

The parent theme, Velux 1.1.3, is currently installed.

Theme installed successfully.

But the theme page is reporting the theme is broken

Broken Themes
The following themes are installed but incomplete.

Name    Description     
Velux Child The "velux" theme is not a valid parent theme.

styles.css:

/*
 Theme Name:   Velux Child
 Theme URI:    
 Description:  Velux Child Theme
 Author:       Jonathan Brown
 Author URI:   /
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  .0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  velux
 Template:     velux
*/

functions.php

<?php
function my_theme_enqueue_styles() {

    $parent_style = 'velux'; 

    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array( $parent_style ),
        wp_get_theme()->get('Version')
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>

I don't understand what is missing when the Install is reporting success, but the Themes page is reporting a Broken Theme. styles.css and functions.php included below.

Thank you, in advance, for your help!

When I installed the child theme, it seemed to find the parent.

Installing Theme from uploaded file: wp-velux-child.zip
Unpacking the package…

Installing the theme…

This theme requires a parent theme. Checking if it is installed…

The parent theme, Velux 1.1.3, is currently installed.

Theme installed successfully.

But the theme page is reporting the theme is broken

Broken Themes
The following themes are installed but incomplete.

Name    Description     
Velux Child The "velux" theme is not a valid parent theme.

styles.css:

/*
 Theme Name:   Velux Child
 Theme URI:    https://github/djjonbrown/wp-velux-child
 Description:  Velux Child Theme
 Author:       Jonathan Brown
 Author URI:   https://github/djjonbrown/
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  velux
 Template:     velux
*/

functions.php

<?php
function my_theme_enqueue_styles() {

    $parent_style = 'velux'; 

    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array( $parent_style ),
        wp_get_theme()->get('Version')
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>
Share Improve this question asked Sep 23, 2018 at 21:09 Jonathan BrownJonathan Brown 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

From what I can tell Velux is a child theme of the Primer theme. I just made the same mistake... Velux is not a valid parent theme because it is a child theme!

Post a comment

comment list (0)

  1. No comments so far