Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Pre-set Facebook Pixel events from front-end interactions.

To enable this feature you need to have correctly setup and enabled a Facebook Pixel in your WordPress website.

How it works

Label Grid Tools send automatically event data to Facebook Pixel once any of the following actions is performed:

  • Releases/Artists:

    • Click on Social Media / Store links

  • Pre/Save Spotify:

    • Start Wizard

    • End Wizard and Pre/Save Tracks

  • Gate Downloads:

    • Start Wizard

    • End Wizard and correctly follow the Gate destination

Under the hood

Label Grid Tools executes the following fbq() script for each event.

Releases Links:

fbq(
    'trackCustom', 
    'ServiceLinkClick', 
    {
        service: SERVICENAME, 
        toUrl: SERVICEURL, 
        release: RELEASEURL
    }
)

Spotify Pre/Save:

fbq(
    'trackCustom', 
    'PresaveActionSaved', 
    {
        id: GATEID 
    }
)

Spotify Pre/Save - Playlist saved:

fbq(
    'trackCustom', 
    'PresaveActionSavedInPlaylist', 
    {
        id: GATEID 
    }
)

Gate Download:

fbq(
    'trackCustom', 
    'GateConfirmed', 
    {
        id: GATEID 
    }
)
  • No labels