Skip to content

Instantly share code, notes, and snippets.

@rajeshsingh520
Created October 27, 2025 01:11
Show Gist options
  • Select an option

  • Save rajeshsingh520/4814ec13d942c7eb19ed54fd4f0ddf55 to your computer and use it in GitHub Desktop.

Select an option

Save rajeshsingh520/4814ec13d942c7eb19ed54fd4f0ddf55 to your computer and use it in GitHub Desktop.
show sales popup only to logged in user
add_filter('pi_live_sales_notification_control_filter', function($show){
if( ! is_user_logged_in() ) {
return false;
}
return $show;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment