OwlCyberSecurity - MANAGER
Edit File: logo_setting.php
<?php return array( 'title' => esc_html__( 'Logo Setting', 'conat' ), 'id' => 'logo_setting', 'desc' => '', 'subsection' => false, 'fields' => array( //Favicon array( 'id' => 'image_favicon', 'type' => 'media', 'url' => true, 'title' => esc_html__( 'Favicon', 'conat' ), 'subtitle' => esc_html__( 'Upload site favicon image', 'conat' ), ), //Dark Logo array( 'id' => 'normal_logo_show1', 'type' => 'switch', 'title' => esc_html__('Enable Dark Logo', 'conat'), 'default' => true, ), array( 'id' => 'logo', 'type' => 'media', 'url' => true, 'title' => esc_html__( 'Dark Logo', 'conat' ), 'subtitle' => esc_html__( 'Upload site logo.', 'conat' ), 'required' => array( 'normal_logo_show1', '=', true ), ), array( 'id' => 'logo_dimension', 'type' => 'dimensions', 'title' => esc_html__( 'Dark Logo Dimension', 'conat' ), 'subtitle' => esc_html__( 'Select logo dimension', 'conat' ), 'units' => array( 'em', 'px', '%' ), 'default' => array( 'Width' => '', 'Height' => '' ), 'required' => array( 'normal_logo_show1', '=', true ), ), //Light Logo array( 'id' => 'normal_logo_show2', 'type' => 'switch', 'title' => esc_html__('Enable Light Logo', 'conat'), 'default' => true, ), array( 'id' => 'light_logo', 'type' => 'media', 'url' => true, 'title' => esc_html__( 'Light Logo', 'conat' ), 'subtitle' => esc_html__( 'Upload site logo.', 'conat' ), 'required' => array( 'normal_logo_show1', '=', true ), ), array( 'id' => 'light_logo_dimension', 'type' => 'dimensions', 'title' => esc_html__( 'Light Logo Dimension', 'conat' ), 'subtitle' => esc_html__( 'Select logo dimension', 'conat' ), 'units' => array( 'em', 'px', '%' ), 'default' => array( 'Width' => '', 'Height' => '' ), 'required' => array( 'normal_logo_show1', '=', true ), ), //Sticky Logo array( 'id' => 'normal_logo_show3', 'type' => 'switch', 'title' => esc_html__('Enable Sticky Logo', 'conat'), 'default' => true, ), array( 'id' => 'sticky_logo', 'type' => 'media', 'url' => true, 'title' => esc_html__( 'Sticky Logo', 'conat' ), 'subtitle' => esc_html__( 'Upload site Light logo image', 'conat' ), 'required' => array( 'normal_logo_show3', '=', true ), ), array( 'id' => 'sticky_logo_dimension', 'type' => 'dimensions', 'title' => esc_html__( 'Sticky Logo Dimension', 'conat' ), 'subtitle' => esc_html__( 'Select sticky logo dimension', 'conat' ), 'units' => array( 'em', 'px', '%' ), 'default' => array( 'Width' => '', 'Height' => '' ), 'required' => array( 'normal_logo_show3', '=', true ), ), //Mobile Logo array( 'id' => 'normal_logo_show4', 'type' => 'switch', 'title' => esc_html__('Enable Mobile Logo', 'conat'), 'default' => true, ), array( 'id' => 'mobile_logo', 'type' => 'media', 'url' => true, 'title' => esc_html__( 'Mobile Logo', 'conat' ), 'subtitle' => esc_html__( 'Upload mobile logo image', 'conat' ), 'required' => array( 'normal_logo_show4', '=', true ), ), array( 'id' => 'mobile_logo_dimension', 'type' => 'dimensions', 'title' => esc_html__( 'Mobile Logo Dimension', 'conat' ), 'subtitle' => esc_html__( 'Select mobile logo dimension', 'conat' ), 'units' => array( 'em', 'px', '%' ), 'default' => array( 'Width' => '', 'Height' => '' ), 'required' => array( 'normal_logo_show4', '=', true ), ), array( 'id' => 'logo_settings_section_end', 'type' => 'section', 'indent' => false, ), ), );