Title: child theme
Last modified: August 30, 2016

---

# child theme

 *  Resolved [hellasphotography](https://wordpress.org/support/users/hellasphotography/)
 * (@hellasphotography)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/child-theme-177/)
 * How to create a child theme for pixova-lite?
    With only the style.css file I’
   missing a lot…

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/topic/child-theme-177/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/child-theme-177/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/child-theme-177/page/2/?output_format=md)

 *  [Cristian Raiber](https://wordpress.org/support/users/cristianraiber-1/)
 * (@cristianraiber-1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744604)
 * Hi there,
 * have you tried also copying the functions.php file?
 * Can I have more details sent to [support@machothemes.com](https://wordpress.org/support/topic/child-theme-177/support@machothemes.com?output_format=md)?
 * Thanks,
    Cristian.
 *  Thread Starter [hellasphotography](https://wordpress.org/support/users/hellasphotography/)
 * (@hellasphotography)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744683)
 * email with all details already send 😉
 *  [Cristian Raiber](https://wordpress.org/support/users/cristianraiber-1/)
 * (@cristianraiber-1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744689)
 * Great; someone will be in touch with you.
 *  [BreTweb](https://wordpress.org/support/users/bretweb/)
 * (@bretweb)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744777)
 * Hello
    Same problems for me
 * I’m trying the child theme following docs but the theme is broked missing a lot
   of settings
    another question is also with the translations in fr_FR … which 
   and where put the file fr_FR.mo ?
 * and last problem after trying to update last version all crash! 🙂
    /wp-content/
   themes/pixova-lite/inc/components/related-posts/class.mt-related-posts.php on
   line 67
 *  Thread Starter [hellasphotography](https://wordpress.org/support/users/hellasphotography/)
 * (@hellasphotography)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744778)
 * [@bretweb](https://wordpress.org/support/users/bretweb/)
 * hi, try this please, it works fine…
 *     ```
       /*
       Theme Name:   Pixova Lite Child Theme
       Theme URI:    http://example.com/twenty-fifteen-child/
       Description:  Twenty Fifteen Child Theme
       Author:       John Doe
       Author URI:   http://example.com
       Template:     pixova-lite
       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:  twenty-fifteen-child
       */
       ```
   
 *     ```
       <?php
       add_action( 'wp_enqueue_scripts', 'pixova_lite_child_theme_enqueue_styles' );
       function pixova_lite_child_theme_enqueue_styles() {
           wp_enqueue_style( 'pixova-lite', get_template_directory_uri() . '/style.css' );
           wp_enqueue_style( 'pixova-lite-child-theme', get_stylesheet_uri() );
       }
       ```
   
 * thanks to the great [support@machothemes.com](https://wordpress.org/support/topic/child-theme-177/support@machothemes.com?output_format=md)
   team 😉
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744779)
 * [@cristianraiber-1](https://wordpress.org/support/users/cristianraiber-1/), Please
   make sure you come back and post the solution in the threads that you take support
   from.
 *  [Cristian Raiber](https://wordpress.org/support/users/cristianraiber-1/)
 * (@cristianraiber-1)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744780)
 * Hi Andrew,
 * the solution posted above by hellasphotography is the one provided by us; he 
   just beat us to it 🙂
 * Cristian.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744781)
 * Yes I would say that’s only as a result of someone else enquiring about the solution,
   posted 4 hours ago.
 * Another thread for example: [https://wordpress.org/support/topic/adding-logo-to-header-11](https://wordpress.org/support/topic/adding-logo-to-header-11)
 * When you provide the solution privately, please also provide that publicly via
   the forums when people have taken the time to create that thread here.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744782)
 * Okay that’s a bad example because the person actually had a Pro version. I thought
   it was obvious as to what I meant, but I guess not. I’ll be more informative 
   the next time it happens – I don’t have the time to explain in another way currently.
 *  [Cristian Raiber](https://wordpress.org/support/users/cristianraiber-1/)
 * (@cristianraiber-1)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744783)
 * I’ll give this another read tomorrow, I’m really having trouble understanding
   what exactly I could have done better …
 *  [BreTweb](https://wordpress.org/support/users/bretweb/)
 * (@bretweb)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744784)
 * [@hellasphotography](https://wordpress.org/support/users/hellasphotography/)
   
   Hello thank you for your example code … I ‘ve tried but same probleme :
 * Just the picture backgroud and after all text and menu are displayed on the screen
   without css ?
 * Perhaps I miss something … but
 *  [Cristian Raiber](https://wordpress.org/support/users/cristianraiber-1/)
 * (@cristianraiber-1)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744786)
 * BreTweb,
 * can you send more details to [support@machothemes.com](https://wordpress.org/support/topic/child-theme-177/support@machothemes.com?output_format=md)
   pls ? Including site URL & FTP, if possible so we can have someone from the dev.
   team debug.
 * Thanks,
    Cristian.
 *  Thread Starter [hellasphotography](https://wordpress.org/support/users/hellasphotography/)
 * (@hellasphotography)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744787)
 * [@bretweb](https://wordpress.org/support/users/bretweb/)
 * use the first code as **style.css** and the second one as **functions.php**
 * place both files in a folder and rename it to **pixovalite-child**
 * if you want copy and paste the screenshot png file from the parent theme in to
   the child-theme folder.
 * the child-theme folder must be within the **wp-content/themes** directory.
 *  [Cristian Raiber](https://wordpress.org/support/users/cristianraiber-1/)
 * (@cristianraiber-1)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744788)
    - use the first code as style.css and the second one as functions.php
    - place both files in a folder and rename it to pixovalite-child
    - if you want copy and paste the screenshot png file from the parent theme in
      to the child-theme folder.
    - the child-theme folder must be within the wp-content/themes directory.
    - </u>
    - > /*
      >  Theme Name: Pixova Lite Child Theme Theme URI: [http://www.machothemes.com/themes/pixova-lite/](http://www.machothemes.com/themes/pixova-lite/)
      > Description: Pixova Lite Child Theme Author: John Doe Author URI: [http://www.machothemes.com](http://www.machothemes.com)
      > Template: pixova-lite Version: 1.0.0 License: GNU General Public License
      > v2 or later License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
      > Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-
      > ready Text Domain: pixovalite-child */
    - >  <?php
      >  add_action( ‘wp_enqueue_scripts’, ‘pixova_lite_child_theme_enqueue_styles’);
      > function pixova_lite_child_theme_enqueue_styles() { wp_enqueue_style( ‘pixova-
      > lite’, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_style( ‘
      > pixova-lite-child-theme’, get_stylesheet_uri() ); }
 *  [BreTweb](https://wordpress.org/support/users/bretweb/)
 * (@bretweb)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/child-theme-177/#post-6744789)
 * Sorry but I have doe all your setting and nothing change … I certainly miss something
   but what ?
 * You can have a look to the site test there : [http://www.jardinexpress56.fr/wp/](http://www.jardinexpress56.fr/wp/)

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/topic/child-theme-177/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/child-theme-177/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/child-theme-177/page/2/?output_format=md)

The topic ‘child theme’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/pixova-lite/2.0.9/screenshot.jpg)
 * Pixova Lite
 * [Support Threads](https://wordpress.org/support/theme/pixova-lite/)
 * [Active Topics](https://wordpress.org/support/theme/pixova-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/pixova-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/pixova-lite/reviews/)

## Tags

 * [child theme](https://wordpress.org/support/topic-tag/child-theme/)

 * 33 replies
 * 5 participants
 * Last reply from: [Cristian Raiber](https://wordpress.org/support/users/cristianraiber-1/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/child-theme-177/page/3/#post-6744829)
 * Status: resolved