OwlCyberSecurity - MANAGER
Edit File: single-content.php
<?php $default_content_style = rishi__cb_customizer_default_akg( 'content_style', rishi__cb_customizer_get_post_options(), 'inherit' ); $source = [ 'prefix' => $prefix, 'strategy' => 'customizer' ]; $source = null; if ($default_content_style === 'boxed') { $source = [ 'strategy' => rishi__cb_customizer_get_post_options() ]; } $default_background = rishi__cb_customizer_default_akg( 'background', rishi__cb_customizer_get_post_options(), rishi__cb_customizer_background_default_value([ 'backgroundColor' => [ 'default' => [ 'color' => \Rishi_CSS_Injector::get_skip_rule_keyword() ], ], ]) ); $background_source = rishi__cb_customizer_default_akg( 'background', rishi__cb_customizer_get_post_options(), rishi__cb_customizer_background_default_value([ 'backgroundColor' => [ 'default' => [ 'color' => \Rishi_CSS_Injector::get_skip_rule_keyword() ], ], ]) ); if ( isset($background_source['background_type']) && $background_source['background_type'] === 'color' && isset($background_source['backgroundColor']['default']['color']) && $background_source['backgroundColor']['default']['color'] === \Rishi_CSS_Injector::get_skip_rule_keyword() ) { $background_source = get_theme_mod( $prefix . '_background', rishi__cb_customizer_background_default_value([ 'backgroundColor' => [ 'default' => [ 'color' => \Rishi_CSS_Injector::get_skip_rule_keyword() ], ], ]) ); } rishi__cb_customizer_output_background_css([ 'selector' => rishi__cb_customizer_prefix_selector('', $prefix), 'css' => $css, 'tablet_css' => $tablet_css, 'mobile_css' => $mobile_css, 'value' => $background_source, 'responsive' => true, ]); $post_atts = rishi__cb_customizer_get_post_options(); $source = [ 'strategy' => $post_atts ]; if ( rishi__cb_customizer_default_akg( 'content_style_source', $post_atts, 'inherit' ) === 'inherit') { $source = [ 'strategy' => 'customizer' ]; } if ( rishi__cb_customizer_default_akg( 'content_style_source', $post_atts, 'inherit' ) === 'custom') { $prefixpost = 'single_post_'; rishi__cb_customizer_output_background_css([ 'selector' => '.box-layout.single #main-container .main-content-wrapper, .content-box-layout.single #main-container .main-content-wrapper', 'css' => $css, 'tablet_css' => $tablet_css, 'mobile_css' => $mobile_css, 'value' => rishi__cb_get_akv_or_customizer( $prefixpost . 'content_background', $source, rishi__cb_customizer_background_default_value([ 'backgroundColor' => [ 'default' => [ 'color' => '#ffffff' ], ], ]) ), 'responsive' => true, ]); rishi__cb_customizer_output_box_shadow([ 'css' => $css, 'tablet_css' => $tablet_css, 'mobile_css' => $mobile_css, 'selector' => '.box-layout.single #main-container .main-content-wrapper, .content-box-layout.single #main-container .main-content-wrapper', 'variableName' => 'box-shadow', 'value' => rishi__cb_get_akv_or_customizer( $prefixpost . 'content_boxed_shadow', $source, rishi__cb_customizer_box_shadow_value([ 'enable' => false, 'h_offset' => 0, 'v_offset' => 12, 'blur' => 18, 'spread' => -6, 'inset' => false, 'color' => [ 'color' => 'rgba(34, 56, 101, 0.04)', ], ])), 'responsive' => true ]); rishi__cb_customizer_output_spacing([ 'css' => $css, 'tablet_css' => $tablet_css, 'mobile_css' => $mobile_css, 'selector' => '.box-layout.single #main-container .main-content-wrapper, .content-box-layout.single #main-container .main-content-wrapper', 'property' => 'padding', 'value' => rishi__cb_get_akv_or_customizer( $prefixpost . 'boxed_content_spacing', $source, rishi__cb_customizer_spacing_value([ 'linked' => true, 'top' => '40px', 'left' => '40px', 'right' => '40px', 'bottom' => '40px', ]) ) ]); rishi__cb_customizer_output_spacing([ 'css' => $css, 'tablet_css' => $tablet_css, 'mobile_css' => $mobile_css, 'selector' => '.box-layout.single #main-container .main-content-wrapper, .content-box-layout.single #main-container .main-content-wrapper', 'property' => 'box-radius', 'value' => rishi__cb_get_akv_or_customizer( $prefixpost . 'content_boxed_radius', $source, rishi__cb_customizer_spacing_value([ 'linked' => true, 'top' => '3px', 'left' => '3px', 'right' => '3px', 'bottom' => '3px', ]) ) ]); }