-
Closed
-
I just purchased evolve-plus. I was having the same problem with the free version as well.
My problem is that modifying child theme options actually modifies the parent theme options. Here is a step by step example:
(1) Installed evolve-plus
(2) Activated the evolve-plus theme and required plugin
(3) Created a child theme by following these instructions (https://codex.wordpress.org/Child_Themes). I copied the two files I created below.
(4) Activated my child theme.
(5) Changed the buttons to be red via child Theme Options -> Shortcodes -> Button
(6) Saved
(7) Go to live page. Buttons are still blue.
(8) Activate evolve-plus theme.
(9) Go to live page. Buttons are now red.Please help me fix this!
/*
Theme Name: evolve-plus-child
Template: evolve-plus
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: evolve-plus-child
*/<?php
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
?>
The topic Modifying child theme options actually modifies parent theme options is closed to new replies