Problem with Child Themes

Discussion in 'GoldenEagle WordPress Theme' started by pixelberry, Feb 10, 2013.

  1. pixelberry

    pixelberry New Member

    Joined:
    Feb 4, 2013
    Messages:
    3
    Likes Received:
    0
    I am having a problem creating child themes of GoldenEagle Theme. Everytime I do this, and then activate the child, the site goes completely blank and I can't go back. On the child theme folder, I have style sheet with the import url.

    I would like to know how I can return the original state before I activated the child theme. And how I can customize this theme. This is my second time doing this, and the last time, I had to create the db over again.
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Remove child theme and Rename main GoldenEagletheme (For eg. GoldenEagletheme1). It will activate default theme of WordPress. Then create child theme by code given below.
    Create a new folder name it "goldeneagletheme-childtheme" then create a css file name it "style" and add code given below in it.
    Code:
    /*
    Theme Name:    Golden Eagle Theme Child
    Theme URI:      http://www.inkthemes.com/
    Description:    Child theme for the Golden Eagle theme
    Author:        Inkthemes
    Author URI:    http://www.inkthemes.com/
    Template:      goldeneagletheme
    Version:        1.1
    */
    @import url("../goldeneagletheme/style.css");
    Upload newly created child theme in your dashboard and again rename main theme to "GoldenEagletheme " and activate child theme, It will work fine.
     

Share This Page