1. Go to WP Admin -> Plugins -> WPLMS Customizer -> customizer_class.php
2. Add the following code in _construct function
PHP Code:
remove_filter('wplms_logo_url','vibe_logo_url'); add_filter('wplms_logo_url',array($this,'vibe_logo_url'));
3. Add the following function in class :
PHP Code:
function vibe_logo_url($url){ global $post; switch($post->ID){ case 23: $url = 'http://xyz.com/logo1.png'; break; case 27: $url = 'http://xyz.com/logo2.png'; break; default: $logo=vibe_get_option('logo'); if(isset($logo) && $logo) $url = $logo; if(is_ssl()){ $protocol = is_ssl() ? 'https' : 'http'; $url = str_replace('http','https',$url); } break; } return $url; }
In the above replace the 23 and 27 with your respective page IDs