Lose information on my home page after Hirebee updates
Hi,
I have one problem, every time I update Hirebee theme, I lose the changes in my home page (but not in the other pages from my website). I´m using a child Hirebee theme but I have the problem the same way.
I send you my child theme functions.php:
----------------------------------------------------------------------------------------------
<?php
/**
* Registers the stylesheet for the child theme.
*
*/
function hirebee_child_styles() {
global $hrb_options;
wp_enqueue_style( 'child-style', get_stylesheet_uri() );
wp_enqueue_style( 'hrb-color', get_template_directory_uri() . "/styles/$hrb_options->color.css", array(), HRB_VERSION );
}
add_action( 'wp_enqueue_scripts', 'hirebee_child_styles', 999 );
----------------------------------------------------------------------------------------------
and style CSS:
----------------------------------------------------------------------------------------------
/*
Theme Name: Hirebee Child Theme
Version: 1.0.0
Description: A child theme for Hirebee.
Author: Your Name
Author URL:
http://www.your-url.com
Text Domain: hirebee-child
Template: hirebee
*/
----------------------------------------------------------------------------------------------
How can I solve it ? I have to make changes in my child Theme ?
Thank you.
Agustin.