Check if user is a logged in member then check if boolean = true on click

//inside the export function reviews_click(event)

  if(wixUsers.currentUser.loggedIn) {
   if(currentItem === "true") {
    $w('#Information').enable();
    $w('#reviews').disable();
    $w('#sectionInformation').collapse();
    $w('#sectionReviews').expand();
    $w('#line569').hide();
    $w('#line570').show();
   } else {
     if (currentItem === "false") {
      $w('#Information').disable();
      $w('#reviews').enable();
      $w('#sectionInformation').expand();
      $w('#sectionReviews').collapse();
      $w('#line569').show();
      $w('#line570').hide();   
      wixWindow.openLightbox("AccountUnverified");
     }
    }
  } else {
    wixUsers.promptLogin();
   }

Also make sure your lightbox’s name is “AccountUnverified”