Plugin categories

Create a Website with AI
Child Theme Configurator

Child Theme Configurator

When using the Customizer is not enough - Create a child theme from your installed themes and customize styles, templates, functions and more.

4.7

Rating summary

278

Reviews

300K

Active installations

Child Theme Configurator
Child Theme Configurator
Child Theme Configurator
Child Theme Configurator
+4

Overview

Compatibility

Installation instructions

Customer support & learning resources

Changelog

Main benefits

Update themes without losing customizations

Smart Theme Analyzer determines correct settings

Resolve common child theme issues

Copy existing widgets, menus, Customizer options

Preview custom styles before committing

About this plugin

Version: 2.6.6
Last updated: 23-03-2024
WordPress version: 4.0
Tested up to: false
PHP version required: 7.4
Languages: Español, Español de Colombia [+7]
Learning resources: View resources

Overview

Child Theme Configurator is a highly efficient WordPress utility designed to streamline the process of creating and customizing child themes. This plugin empowers users to delve deep into the intricacies of their themes, enabling them to easily identify and modify specific CSS attributes beyond what is possible with the standard WordPress Customizer. Its comprehensive Analyzer tool scrutinizes the theme, automatically setting up the child theme and ensuring optimal performance by correctly enqueuing stylesheets. Users can visualize customizations before applying them, guaranteeing their changes align with their vision. Additionally, it offers advanced functionalities like the seamless editing of theme templates, incorporating web fonts, and managing responsive design CSS. For developers, features like exporting child themes as Zip Archives and leveraging the WP Filesystem API ensure an efficient workflow. The PRO version extends these capabilities to installed plugins, making it an indispensable tool for complete site customization. With Child Theme Configurator, managing and customizing WordPress child themes becomes a precise and risk-free endeavor.

Take Control of Your Child Themes

  • Parses and indexes your stylesheets for easy access to CSS media queries, selectors, properties, and values.
  • Shows a preview of customizations before committing them to the child theme.
  • Saves your work to prevent loss of edits.

Update Themes Without Losing Customizations

  • Automatically determines the correct setup for a child theme based on the parent theme.
  • Allows you to update themes without losing customizations.
  • Handles vendor-specific syntax and enqueues stylesheets for optimum performance.

Smart Theme Analyzer

  • Scans the rendered theme and configures your child theme automatically.
  • Resolves common child theme issues with almost any parent theme.
  • Identifies and overrides exact CSS selectors from the parent theme.

Customization Beyond the Customizer

  • Allows changes to specific colors, backgrounds, font styles, etc., without affecting other elements.
  • Supports web fonts and custom @media queries for responsive design.
  • Provides a Spectrum color picker for selecting hex, RGBA, and named colors.

Features list

Feature

Free version

Premium version

Pre-Built Websites

Access a variety of ready-made website templates.

Customize Without Code

Easily modify your site without any coding knowledge.

Made for Page Builders

Optimized for seamless integration with popular page builders.

Superfast Performance

Experience lightning-fast website loading speeds.

Layout Settings

Adjust layout options to fit your design needs.

Header Options

Choose from multiple header styles and configurations.

Colors & Typography

Customize colors and fonts to match your brand.

Blog & Archives

Enhanced features for blog posts and archive pages.

Gutenberg Blocks Compatibility

Fully compatible with Gutenberg block editor.

No jQuery

Built without jQuery for faster performance.

Less than 50 KB

Lightweight design with a size under 50 KB.

Just 0.5 seconds load time

Achieve a load time of just half a second.

Accessibility Ready

Designed to be accessible for all users.

SEO Friendly Markup

Optimized markup for better search engine rankings.

Translation & RTL Ready

Supports translations and right-to-left languages.

All Essential Bundle Features

Includes all fundamental tools and plugins.

Convert Pro Plugin

A powerful lead generation plugin for conversions.

Schema Pro Plugin

Enhances your website's SEO with structured data.

SkillJet Academy

Access to a library of professional training courses.

Future Plugins

Get all upcoming plugins at no additional cost.

VIP Priority Support

Receive top-tier support with priority response times.

Unlimited Website Usage

Use the features on an unlimited number of websites.

Advanced Customization Options

Access to extensive customization settings.

Advanced Integrations

Integrate with advanced third-party services and tools.

Premium Support

Get access to premium customer support services.

Exclusive Training

Participate in exclusive training sessions and webinars.

Access to Beta Features

Early access to new features before official release.

Priority Feature Requests

Your feature requests are given top priority.

Dedicated Account Manager

A dedicated manager to assist with your account.

Advanced Performance Features

Enhanced features for superior website performance.

Pricing

Astra Free

$0 / forever

Plan includes

Pre-Built Websites
Customize Without Code
Made for Page Builders
Superfast Performance
Layout Settings
Header Options
Colors & Typography
Blog & Archives
Buy Now

Growth Bundle

$249 / per year

Plan includes

All Essential Bundle Features
Convert Pro Plugin
Schema Pro Plugin
SkillJet Academy
Future Plugins
VIP Priority Support
Unlimited Website Usage
Advanced Customization Options
Buy Now

In some cases companies have different prices based on various components like a location. As a result the prices displayed here can differ from the ones you see on their websites.

See all pricing options

Rating and reviews

4.7

Rating summary

278

Reviews

300K

Active installations

5
4
3
2
1

User sentiment analysis

Users appreciate this WordPress plugin for its ease of use, reliability, and efficiency in creating child themes. It simplifies a typically tedious process and preserves customizations from the parent theme, including theme settings and CSS. Many users highlight its ability to seamlessly create a child theme without breaking the site or losing progress. However, drawbacks include compatibility issues with newer versions of WordPress or themes, potential security concerns with file permissions, and occasionally lackluster support particularly for pro version issues. Some users experience site crashes or lost changes after updates, suggesting that the plugin may not be foolproof. Despite its shortcomings, it is largely praised for its functionality and convenience.
matheusmorison

matheusmorison

15 Dec, 2024

Excelente plugin, funciona perfeitamente. Só uma sugestão: Poderia ter um ambiente simplificado para criar o tema filho. Porque devido a muitas funções que aparecem, pode acabar confundindo muita gente e acaba não sabendo utilizar. Tivesse apenas um botão de gerar o tema filho e uma opção avançada seria útil. Aqui tem funcionado só gerar logo o tema filho sem precisar mexer em nenhuma outra opção.
axxies

axxies

26 Apr, 2024

This plugin is outdated since Divi version 4.25.0 . If you use it after that it will make use of code that is too old. The effect of that is that there is no way to add/edit any elements at all. In functions.php of the child theme, you have to add this code: <?php function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); In style.css of the child theme, you have to remove this: @import url("../Divi/style.css"); This information came from the support team when they helped me solve my issues. You can find more info about this at: elegantthemes dot com slash blog slash divi-resources slash divi-child-theme(RIDICULOUS that they don’t allow to post links to explanations here. How else can I help?)
axxies

axxies

26 Apr, 2024

This plugin is outdated since Divi version 4.25.0 . If you use it after that it will make use of code that is too old. The effect of that is that there is no way to add/edit any elements at all. In functions.php of the child theme, you have to add this code: <?php function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); In style.css of the child theme, you have to remove this: @import url("../Divi/style.css"); This information came from the support team when they helped me solve my issues. You can find more info about this at: elegantthemes dot com slash blog slash divi-resources slash divi-child-theme(RIDICULOUS that they don’t allow to post links to explanations here. How else can I help?)
sayna

sayna

07 Mar, 2024

Works as it should, faced no issue and problem, using it for months! thanks 🙂
gilgongo

gilgongo

19 Oct, 2023

Ooh yar! This plugin makes the best of the utterly weird and crazy WordPress “child” thing with themes. Life is now so much easier.

FAQ

How do I move changes I have already made to my theme into a Child Theme?

When I run the analyzer I get 'Constants Already Defined' notice in PHP Debug Output

Is there a tutorial?

If the parent theme changes (e.g., upgrade), do I have to update the child theme?

If I uninstall Child Theme Configurator are child themes affected?

How do I add comments?

Does it work with Multisite?

Does it work with plugins?