Apply align and padding settings only if styled

This commit is contained in:
Brian Miyaji
2014-06-26 18:30:43 +10:00
parent 7bea8db8f9
commit 171a4604fd
2 changed files with 34 additions and 28 deletions

View File

@@ -40,8 +40,7 @@ class SP_Settings_General extends SP_Settings_Page {
$presets = SP_Admin_Sports::get_preset_options();
return apply_filters( 'sportspress_general_settings', array(
$settings = array(
array( 'title' => __( 'General Options', 'sportspress' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ),
array( 'type' => 'country' ),
@@ -82,7 +81,10 @@ class SP_Settings_General extends SP_Settings_Page {
array( 'title' => __( 'Styles and Scripts', 'sportspress' ), 'type' => 'title', 'desc' => '', 'id' => 'script_styling_options' ),
array( 'type' => 'frontend_styles' ),
);
if ( ( $styles = SP_Frontend_Scripts::get_styles() ) && array_key_exists( 'sportspress-general', $styles ) ):
$settings = array_merge( $settings, array(
array(
'title' => __( 'Align', 'sportspress' ),
'id' => 'sportspress_table_text_align',
@@ -108,7 +110,10 @@ class SP_Settings_General extends SP_Settings_Page {
'step' => 1
),
),
));
endif;
$settings = array_merge( $settings, array(
array(
'title' => __( 'Custom CSS', 'sportspress' ),
'id' => 'sportspress_custom_css',
@@ -158,8 +163,9 @@ class SP_Settings_General extends SP_Settings_Page {
),
array( 'type' => 'sectionend', 'id' => 'script_styling_options' ),
));
)); // End general settings
return apply_filters( 'sportspress_general_settings', $settings ); // End general settings
}
/**

View File

@@ -30,7 +30,7 @@ class SP_Frontend_Scripts {
'version' => SP_VERSION,
'media' => 'all'
),
) );
));
}
/**