Update default colour scheme

This commit is contained in:
Brian Miyaji
2014-03-31 23:45:26 +11:00
parent 71a2ae95d4
commit 67522f7776
3 changed files with 17 additions and 33 deletions

View File

@@ -125,11 +125,21 @@ class SP_Install {
} }
} }
// Configure default sport // Default color scheme
$sport = 'soccer'; add_option( 'sportspress_frontend_css_primary', '#00a69c' );
$options = sp_get_sport_presets(); add_option( 'sportspress_frontend_css_heading', '#ffffff' );
SP_Admin_Settings::configure_sport( $options[ $sport ] ); add_option( 'sportspress_frontend_css_text', '#222222' );
update_option( 'sportspress_sport', $sport ); add_option( 'sportspress_frontend_css_background', '#f5f5f5' );
add_option( 'sportspress_frontend_css_alternate', '#f0f0f0' );
if ( ! get_option( 'sportspress_installed' ) ) {
// Configure default sport
$sport = 'soccer';
$options = sp_get_sport_presets();
SP_Admin_Settings::configure_sport( $options[ $sport ] );
update_option( 'sportspress_sport', $sport );
update_option( 'sportspress_installed', 1 );
}
} }
/** /**

View File

@@ -44,34 +44,6 @@ function sportspress_the_title( $title, $id ) {
} }
add_filter( 'the_title', 'sportspress_the_title', 10, 2 ); add_filter( 'the_title', 'sportspress_the_title', 10, 2 );
function sportspress_admin_notices_styles() {
$screen = get_current_screen();
if ( $screen->id != 'settings_page_sportspress' ):
if ( isset( $_REQUEST['skip_install_sportspress'] ) ):
update_option( '_sp_needs_welcome', $_REQUEST['_sp_needs_welcome'] );
endif;
if ( ! get_option( 'sportspress_installed' ) ):
add_action( 'admin_notices', 'sportspress_admin_install_notices' );
endif;
endif;
$template = get_option( 'template' );
if ( ! current_theme_supports( 'sportspress' ) && ! in_array( $template, array( 'twentyfourteen', 'twentythirteen', 'twentyeleven', 'twentytwelve', 'twentyten' ) ) ):
if ( ! empty( $_GET['hide_sportspress_theme_support_check'] ) ):
update_option( 'sportspress_theme_support_check', $template );
return;
endif;
if ( get_option( 'sportspress_theme_support_check' ) !== $template ):
add_action( 'admin_notices', 'sportspress_theme_check_notice' );
endif;
endif;
}
//add_action( 'admin_print_styles', 'sportspress_admin_notices_styles' );
/** /**
* sportspress_admin_install_notices function. * sportspress_admin_install_notices function.
* *

View File

@@ -22,3 +22,5 @@ $installer->remove_roles();
// Delete options // Delete options
$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'sportspress_%';"); $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'sportspress_%';");
delete_option( 'sportspress_installed' );