Remove error logs

This commit is contained in:
Jay Wood
2016-11-04 09:39:44 -04:00
parent c622b362ab
commit 46155009ca
2 changed files with 0 additions and 4 deletions

View File

@ -24,8 +24,6 @@ function cwv3_get_css() {
$custom_css = get_option( 'cwv3_css', '' ); $custom_css = get_option( 'cwv3_css', '' );
$opacity = get_option( 'cwv3_bg_opacity', '1' ); $opacity = get_option( 'cwv3_bg_opacity', '1' );
error_log( print_r( $opacity, 1 ) );
$bg_image_css = ! empty( $image ) ? 'background: url( '. esc_url( $image ) . ' ) no-repeat top center;' : ''; $bg_image_css = ! empty( $image ) ? 'background: url( '. esc_url( $image ) . ' ) no-repeat top center;' : '';
$bg_color_css = ! empty( $color ) ? 'background-color: ' . $color . ';' : ''; $bg_color_css = ! empty( $color ) ? 'background-color: ' . $color . ';' : '';

View File

@ -244,8 +244,6 @@ class CWV2_Settings {
} }
$option_value = get_option( $field_id, $field_id, $default ); $option_value = get_option( $field_id, $field_id, $default );
error_log( print_r( $option_value, 1 ) );
$attributes = ''; $attributes = '';
if ( ! empty( $options ) ) { if ( ! empty( $options ) ) {