A helper to store and handle UTM parameters session-based on statamic websites.
{{ if { utm:has type="source" value="google" } }}
<span>{{ utm:get type="medium" }}</span>
{{ /if }}
You can search for this addon in the Tools > Addons
section of the Statamic control panel and click install, or run the following command from your project root:
composer require suarez/statamic-utm-parameter
Optionally, you can publish the config file of this package with this command:
php artisan vendor:publish --tag="statamic-utm-parameter-config""
Note: The UTM parameters are stored session-based, meaning they are only available during the user's current browsing session and will be cleared when the user closes their browser or navigates away from your website. This addon leverages the built-in Laravel session management system for storage.
The configuration file config/statamic-utm-parameter.php
allows you to control the behavior of the UTM parameters handling.
<?php
return [
/*
* Control Overwriting UTM Parameters (default: false)
*
* This setting determines how UTM parameters are handled within a user's session.
*
* - Enabled (true): New UTM parameters will overwrite existing ones during the session.
* - Disabled (false): The initial UTM parameters will persist throughout the session.
*/
'override_utm_parameters' => false,
/*
* Session Key for UTM Parameters (default: 'utm')
*
* This key specifies the name used to access and store UTM parameters within the session data.
*
* If you're already using 'utm' for another purpose in your application,
* you can customize this key to avoid conflicts.
* Simply provide your preferred key name as a string value.
*/
'session_key' => 'utm',
/*
* Allowed UTM Parameters (default: ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'utm_campaign_id'])
*
* This setting defines the UTM parameters that are allowed within your application.
*
* In this array, you can specify a list of allowed UTM parameter names. Each parameter should be listed as a string.
* Only parameters from this list will be stored and processed in the session.
* and any parameter without the 'utm_' prefix will be ignored regardless of its inclusion in this list.
*
* Example: To only allow the basic UTM parameters (source, medium, and campaign), you could update the array like this:
*
* 'allowed_utm_parameters' => [
* 'utm_source',
* 'utm_medium',
* 'utm_campaign',
* ],
*/
'allowed_utm_parameters' => [
'utm_source',
'utm_medium',
'utm_campaign',
'utm_term',
'utm_content',
'utm_campaign_id'
],
];
This addon provides convenient methods to retrieve, check, and use UTM parameters within your Statamic templates.
Use {{ utm:all }}
to get an array of all UTM parameters.
{{ utm:all }}
Use {{ utm:get }}
to get the value of a specific UTM parameter.
{{ utm:get type="term" }}
Use {{ utm:has }} or {{ utm:is }} to check if a specific UTM parameter exists.
{{ if { utm:has type="medium" value="newsletter" } }}
<span>Subscribe to our podcast</span>
{{ /if }}
Use {{ utm:contains }} to check if a specific UTM parameter contains a specific value.
{{ if { utm:contains type="campaign" value="summer" } }}
<p>Summer-Deals</p>
{{ /if }}
Use the clear method to remove and reset the UTM parameters from the session.
UtmParameter::clear(); // true
The following UTM parameter types are supported:
source
: The source of the traffic (e.g., google, newsletter).medium
: The medium of the traffic (e.g., cpc, email).campaign
: The campaign name (e.g., spring_sale).term
: The search term used (e.g., running+shoes).content
: The specific content (e.g., ad_variation_1).
<ul>
{{ foreach array="{ utm:all }"}}
<li>{{ key }}: {{ value }}</li>
{{ /foreach }}
</ul>
To display the UTM term parameter:
{{ utm:get type="term" }}
To display the UTM medium parameter if the source is google
:
{{ if { utm:has type="medium" value="newsletter" } }}
<span>Subscribe to our podcast</span>
{{ /if }}
{{ if { utm:contains type="campaign" value="summer" } }}
<p>Summer-Deals</p>
{{ /if }}
Here's a full example combining all the functionalities:
<ul>
<li>Source: {{ utm:get type="source" }}</li>
<li>Medium: {{ utm:get type="medium" }}</li>
<li>Campaign: {{ utm:get type="campaign" }}</li>
<li>Term: {{ utm:get type="term" }}</li>
<li>Content: {{ utm:get type="content" }}</li>
</ul>
{{ if { utm:has type="source" value="ecosia" } }}
<div>Thank you for visiting from Ecosia!</div>
{{ elseif { utm:has type="source" value="newsletter" } }}
<p>Welcome back, newsletter subscriber!</p>
{{ else }}
<p>Subscribe to our newsletter!</p>
{{ /if }}
You can extend the middleware to customize the behavior of accepting UTM parameters. For example, you can override the shouldAcceptUtmParameter
method.
First, create a new middleware using Artisan:
php artisan make:middleware CustomMiddleware
Then, update the new middleware to extend UtmParameters and override the shouldAcceptUtmParameter
method:
<?php
namespace App\Http\Middleware;
use Illuminate\Http\Request;
use Suarez\StatamicUtmParameters\Http\Middleware\CheckUtmParameter;
class CustomMiddleware extends CheckUtmParameter
{
/**
* Determines whether the given request/response pair should accept UTM-Parameters.
*
* @param \Illuminate\Http\Request $request
*
* @return bool
*/
protected function shouldAcceptUtmParameter(Request $request)
{
return $request->isMethod('GET') || $request->isMethod('POST');
}
}
Finally, update your bootstrap/app.php
to use the CustomMiddleware:
# bootstrap/app.php
use App\Http\Middleware\CustomMiddleware;
->withMiddleware(function (Middleware $middleware) {
$middleware->web(append: [
CustomMiddleware::class,
// other middleware...
]);
})
The Statamic UTM-Parameters addon is open-sourced software licensed under the MIT license.