Jou Maxe, ich hab eine Anleitung gefunden.
Schau mal, ob die style.css-Datei so richtig ist:
-------------------------------
/*
Theme Name: CatchResponsiveChild
Description: Hilfe beim Update
Author: Ulrike Linnenbrink
Author URI: http://www.ulinnedesign.de
Template: catch-responsive
Version: 2.3
Tags:
*/
---------------------------
Und die functions.php auch?
----------------------------
<?php
/* Hier kommen die functions für mein Child-Theme */
function catch-responsive_child_styles() {
wp_deregister_style( 'catch-responsive-style');
wp_register_style('catch-responsive-style', get_template_directory_uri(). '/style.css');
wp_enqueue_style('catch-responsive-style', get_template_directory_uri(). '/style.css');
wp_enqueue_style( 'childtheme-style', get_stylesheet_directory_uri().'/style.css', array('catch-responsive-style') );
}
add_action( 'wp_enqueue_scripts', 'catch-responsive_styles' );
----------------------------------------------------------------------
Und dann stand da noch diese Code-Zeile, die mit dem Namen der Originaldatei irgendwie die Reihenfolge festlegen soll:
----------------------
array('twentyfifteen-style')
-----------------------
wobei für mich da wieder "catch-responsive-style" stehen müsste.
In jedem Fall soll dort der Name stehen, der auch in der Original functions.php steht, und das Original sieht so aus:
-----------------------------------
<?php
/**
* Functions and definitions
*
* Sets up the theme using core catchresponsive-core and provides some helper functions using catchresponsive-custon-functions.
* Others are attached to action and
* filter hooks in WordPress to change core functionality
*
* @package Catch Themes
* @subpackage Catch Responsive
* @since Catch Responsive 1.0
*/
//define theme version
if ( !defined( 'CATCHRESPONSIVE_THEME_VERSION' ) ) {
$theme_data = wp_get_theme();
define ( 'CATCHRESPONSIVE_THEME_VERSION', $theme_data->get( 'Version' ) );
}
/**
* Implement the core functions
*/
require get_template_directory() . '/inc/catchresponsive-core.php';
------------------------------------------------------------------------------
Hm ... was ist da denn der NAME??
Und wo genau muss diese "array"-Zeile dann hin. Mit in die functions.php - unter den übrigen Text?