• 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?)

  • You must be logged in to reply to this review.