Facebook Pixel/Ads

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 
    }
)

Last updated