wpml compatible link on logo

Please add the given code in your child theme functions.php file or wp-content/plugins/wplms-customizer/wplms-customizer.php file :

add_filter ('wplms_site_link','wpml_site_link');
function wpml_site_link($link){
  $id=get_option('page_on_front');
  if(function_exists('icl_object_id'))
    $id= icl_object_id($id, get_post_type($id), true);
  $h_link = get_permalink( $id );
  return $h_link;  
}