Problems with installing child theme
-
Hello,
I`m trying to get the child theme work, but vainly.I used your tutorial for the setup (https://www.shapedpixels.com/support/basic-theme-setup/create-a-child-theme-for-theme-modifications) and placed the child theme folder like this on the server:
/wp-content/themes/seasonal
/wp-content/themes/seasonal-childWithin the seasonal-child folder they are these two files style.css and functions.php:
<strong>style.css</strong>
<em>[ Moderator note: code fixed. Please wrap code in the backtick character or <a href=”https://codex.www.ads-software.com/Forum_Welcome#Posting_Code”>use the code button</a>. ]</em>
/* Theme Name: Seasonal Child Theme URI: https://www.shapedpixels.com/free-wordpress-themes/seasonal Author: shapedpixels.com Author URI: https://www.shapedpixels.com Description: This is a blank child theme to use with the Opportune theme whenever you need to make changes to code in the theme. Template: Seasonal Child Version: 1.0.0 License: GNU General Public License v3 or later License URI: https://www.gnu.org/copyleft/gpl.html Text Domain: seasonal-child Tags: responsive-layout, custom-colors, post-formats, custom-background, featured-images, microformats, theme-options, translation-ready */
<strong>functions.php</strong>
<?php /** * Functions and definitions * @package Seasonal Child */ // Lets begin by grabbing our stylesheet from the parent theme add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { // Load our main stylesheet wp_enqueue_style( 'senses-lite-child-parent-css', get_template_directory_uri() . '/style.css' ); } ?>
Can you see the reason why the child theme ain’t working properly? In my wordpress adjustments it says for seasonal child, that the superordinate theme is missing and I have to install the superordinate child theme. Otherwise I won`t be able to use the child theme.
Thanks a lot in advance!
- The topic ‘Problems with installing child theme’ is closed to new replies.