Different logo in Top header

1. Add Custom control in Vibe Options panel :

Add this code in child theme functions.php file (WP Admin – Appearance – editor – WPLMS Child theme – functions.php)

 

add_filter('vibe_option_custom_sections','wplms_one_course_section');
function wplms_one_course_section($sections){
    $sections[1]['fields'][] = array(
                        'id' => 'headertop_logo',
                        'type' => 'upload',
                        'title' => __('Upload Logo for Fixed header', 'vibe'), 
                        'sub_desc' => __('Upload your logo', 'vibe'),
                        'desc' => __('This Logo is shown in header.', 'vibe'),
                        'std' => VIBE_URL.'/images/logo.png'
                        );
    return $sections;
}

2. Add custom header.php file in the child theme.

1. Download this header.php file. https://gist.github.com/MrVibe/20609dc8e421ee6e3122

2. Upload it in your child theme.

Result :