December 17, 2015 at 10:49 am
#40493
Theme Horse Support Team
Keymaster
HI russell,
As we have moved all the theme options to customizer as of WordPress guidelines. Because now theme options is not allowed in theme. Did you customize the code creating the child theme or not? If you have not customized the code using child theme then while updating to new version all your customized code will be lost. If you have created the child theme and customized the code then just replace this below all code from child theme
global $ultimate_theme_setting_value;
$options = $ultimate_theme_setting_value;
and add
global $options, $array_of_default_settings;
options = wp_parse_args( get_option( 'ultimate_theme_options', array() ), ultimate_get_option_defaults());
Hope this may help you. If you are using slider background image then you need to add the same image again via customizer.
To go back to website you can contact to the web hosting provider to set site back before 2 weeks. They must have backup of it.
Thank you!