PelcroPaywallNotDisplayed

Fired when paywall is skipped (user has access)

Overview

Fired when content matches a paywall rule, but the paywall is not displayed because the user has access (through subscription, membership, or entitlement).


Triggered By

  • Paywall evaluation when user has valid subscription
  • Paywall evaluation when user has matching entitlement

Event Detail

The event.detail object may contain information about why access was granted.


Example

document.addEventListener('PelcroPaywallNotDisplayed', (event) => {
  console.log('User has access - paywall skipped');

  // Show premium content
  showFullContent();

  // Track successful access
  analytics.track('Content Access Granted', {
    pageUrl: window.location.href
  });
});

Related