diff --git a/includes/admin/settings/class-sp-settings-general.php b/includes/admin/settings/class-sp-settings-general.php index 47366ecd..e65ac2ee 100644 --- a/includes/admin/settings/class-sp-settings-general.php +++ b/includes/admin/settings/class-sp-settings-general.php @@ -215,7 +215,8 @@ class SP_Settings_General extends SP_Settings_Page { 'link' => $link, ); - $options = get_option( 'themeboy', array() ); + // Merge with existing options if available + $options = get_option( 'themeboy' ); if ( is_array( $options ) ) { $colors = array_merge( $options, $colors ); }