While our goal is to make the plugin very simple to use through the user interface, this can be limiting for users and developers who need much more granular control over the plugin’s output. For those users we provide filters which give them the option to adjust the plugin’s behavior programmatically, making the options almost limitless.
Filters can be added to the functions.php file in your child-theme or by using them in a custom plugin. The easiest and safest way is using them in the
functions.php
file: functions.php
If you think there is a good use case for a new filter, let us know by sending a feature request here.
Conversion Value Filter
↑ Back to topUse the conversion value filter in order to recalculate the conversion value. The output will only affect the conversion value of the paid ads pixels. The Google Analytics conversion value output will not be touched.
add_filter( 'wpm_conversion_value_filter', 'filter_conversion_value', 10, 2 );
Example
add_filter('wpm_conversion_value_filter', 'filter_conversion_value', 10, 2);
function filter_conversion_value($order_total, $order)
{
/**
* The order total is the value that is being output as configured
* within the plugin. If you wish to override this and calculate
* the value from scratch, the filter also provides the order object
* with the raw order values.
*
* Example: The average cost to prepare an order for shipping is
* 10% of the order value. Therefore we remove 10% of the order value on
* each order.
**/
return $order_total * 0.9;
}
Additional Google Ads Conversion Pixels
↑ Back to topWith the following filter we provide a way ot add more than one Google Ads conversion pixel programmatically.
/*
* Since version 1.8.2 of the plugin.
*
* This filter will add aditional conversion ID and label pairs to the output
* of the Google Ads pixel.
*
* It will add the output to every page with the Google Ads remarketing pixel,
* including the purchase confirmation page.
*
* Place the following code into your functions.php and replace the placeholders.
*
* It will only work if the main conversion ID and conversion label are set
* within the plugin (which activates the Google Ads conversion tracking in
* the first place).
*/
add_filter('wpm_google_ads_conversion_identifiers', function ($conversion_identifiers) {
$conversion_identifiers['CONVERSION_ID_2'] = 'CONVERSION_LABEL_2';
$conversion_identifiers['CONVERSION_ID_3'] = 'CONVERSION_LABEL_3';
return $conversion_identifiers;
});
Adjust Google Analytics Config Parameters
↑ Back to topTo keep the user interface lightweight we only included basic parameters like Enhanced Link Attribution. For those who need much more granular control over the Google Analytics config parameters we provide a filter. The filter can also be used to override parameters from the user interface.
INFO
GA4 processes IPs from pageviews anonymized by design. This can’t be changed. IP Anonymization in Google Analytics
For Universal Analytics we’ve set the default parameters to also anonymize IPs. That setting can be overwritten with the filter
The following code will remove the anonymize_ip
parameter on all Google Universal Analytics configs:
add_filter('wpm_ga_ua_parameters', 'adjust_analytics_parameters', 10,2);
function adjust_analytics_parameters($analytics_parameters, $analytics_id){
unset($analytics_parameters['anonymize_ip']);
return $analytics_parameters;
}
The following code will adjust the parameters only for the given Google Universal Analytics property:
add_filter('wpm_ga_ua_parameters', 'adjust_analytics_parameters', 10,2);
function adjust_analytics_parameters($analytics_parameters, $analytics_id){
if('UA-12345678-3' == $analytics_id){
unset($analytics_parameters['anonymize_ip']);
/**
* The following parameter setting will override the one set
* in the user interface.
**/
$analytics_parameters['link_attribution'] = true;
}
return $analytics_parameters;
}
Or maybe, you want to set much more specific settings for link_attribution
in your Google Universal Analytics property, like specified here:
add_filter('wpm_ga_ua_parameters', 'adjust_analytics_parameters', 10,2);
function adjust_analytics_parameters($analytics_parameters, $analytics_id){
if('UA-12345678-3' == $analytics_id){
$analytics_parameters['link_attribution'] = [
'cookie_name' => '_gaela',
'cookie_expires' => 60,
'levels' => 2
];
}
return $analytics_parameters;
}
And with the following filter, you can enable the debug mode in GA4.
add_filter('wpm_ga_4_parameters', 'adjust_analytics_parameters', 10,2);
function adjust_analytics_parameters($analytics_parameters, $analytics_id){
$analytics_parameters['debug_mode'] = true;
return $analytics_parameters;
}
Product ID Output Filter for Paid Ads Pixels
↑ Back to topTo keep the UX simple and the setup consistent over several advertising channels, there is only one setting in the UX to adjust the product ID output. The same ID then will be used for all paid ads pixels. The standard setting is either the post ID (eg.
14
), the ID for the WooCommerce Google Feed plugin (eg.woocommerce_gpf_14
) or the SKU (eg.Hoodie
). In some cases you might need to use a different ID type on different channels. Maybe you’re using the post ID for Google Ads, and the SKU for Meta (Facebook). In this case the following filter will adjust the output for a specific pixel. It is even possible to completely customize the ID, if necessary.
INFO
We strongly recommend using the post ID for all product catalogs and for the product ID output. It is the most compatible way and causes the least trouble.
By adding the pixel name to the filter name, you can chose which pixel you want to adjust. For Meta (Facebook) use
wpm_product_id_type_for_facebook
, for Microsoft Ads (Bing) usewpm_product_id_type_for_bing
, etc. Depending on which version of the plugin you have, you can use the following pixel filters:google_ads
,bing
,snapchat
,tiktok
The default values are
post_id
for the post ID,gpf
for the WooCommerce Google Feed ID output (eg.woocommerce_gpf_14
) andsku
for the SKU.
Here’s an example on how to switch the product ID output for Meta (Facebook) to the SKU
:
add_filter('wpm_product_id_type_for_facebook', 'product_id_type_output_for_facebook');
function product_id_type_output_for_facebook()
{
return 'sku';
}
Here’s an example to switch the Meta (Facebook) output to post ID:
add_filter('wpm_product_id_type_for_facebook', 'product_id_type_output_for_facebook');
function product_id_type_output_for_facebook()
{
return 'post_id';
}
You have even the option to completely customize the product ID output and assign it to a specific channel with the
wpm_product_ids
filter.
In the following example use the wpm_product_ids
filter to add one or more custom IDs for each product. In a second step, use the wpm_product_id_type_for_
filter to assign the new custom ID to one or more specific pixels.
The following filter creates the custom product IDs.
add_filter('wpm_product_ids', 'return_wpm_dyn_r_product_ids', 10, 2);
function return_wpm_dyn_r_product_ids($product_ids, $product)
{
$product_ids['custom1'] = 'custom_type_' . $product->get_id();
$product_ids['custom2'] = 'custom_pinterest_catalog_' . $product->get_sku();
return $product_ids;
}
Then assign the new custom product IDs to the channels of your choice.
add_filter('wpm_product_id_type_for_google_ads', 'product_id_type_output_for_google_ads');
function product_id_type_output_for_google_ads()
{
return 'custom1';
}
add_filter('wpm_product_id_type_for_pinterest', 'product_id_type_output_for_pinterest');
function product_id_type_output_for_pinterest()
{
return 'custom2';
}
Google Analytics Product ID Output Filter
↑ Back to topBy default the plugin uses the
post ID
as identifier for Google Analytics. This filter allows you to change this to theSKU
.
INFO
The main reasons why the plugin uses the post ID
by default are:
1. The post ID
is more reliable. A shop owner might not add SKUs to all products, leaving the field sometimes empty. But we need to send an identifier to Google Analytics. (In the case the shop owner doesn’t add an SKU to a product, we will fall back to the post ID
.)
2. The products can be identified by the product name in Google Analytics anyway.
3. It is easier to search for a product ID in WooCommerce or in Google Analytics, so it’s also more practical to use the post ID
.
add_filter('wpm_product_id_type_for_google_analytics', 'wpm_product_id_type_for_google_analytics');
function wpm_product_id_type_for_google_analytics()
{
return 'sku';
}
View Item List Trigger Filter
↑ Back to topThe plugin uses a smart trigger for the
view_item_list
event. It only triggers if a product is actually visible in the viewport for more than 1 second. If a visitor scrolls up and down and sees a product several times,view_item_list
will be triggered each time (again, only if visible for more than one second). The following filter allows to tweak that behavior.
Lazy loading products is supported too 😀 (from version 1.9.4)
INFO
This will only work on a website where caching is off, or after flushing the cache each time you change the settings.
Following settings are available:
testMode
: It activates the test mode, which will show you a transparent overlay on each product for whichview_item_list
has been triggered.bacgroundColor
: You can change the background color of the test overlay in case you use product images where the overlay would not be visible. This is only relevant for the test mode.opacity
: By default the overlay is half transparent. You can adjust the opacity to a level that suits you more. This is only relevant for the test mode.repeat
: By default the plugin resendsview_item_list
events when a visitor scrolls up and down and sees a product multiple times. You can turn this off by setting the value tofalse
. Then the plugin will send only oneview_item_list
event when a product becomes visible on a page.threshold
: This sets how much of a product card must be visible before the event is triggered. With a setting of1
the event triggers only when 100% of the product is visible. The default is0.8
.timeout
: This value tells the plugin how long a product must be visible before theview_item_list
event is sent. The timer will be reset each time the product leaves the viewport. The time must be set in milliseconds, and the default value is1000
milliseconds (1 second).
add_filter('wpm_view_item_list_trigger_settings', 'wpm_view_item_list_trigger_settings');
function wpm_view_item_list_trigger_settings($settings)
{
$settings['testMode'] = true;
$settings['backgroundColor'] = 'green';
// $settings['backgroundColor'] = 'rgba(60,179,113)';
$settings['opacity'] = 0.5;
$settings['repeat'] = true;
$settings['threshold'] = 1;
$settings['timeout'] = 1000;
return $settings;
}
Another simple way to enable the view_item_list demo mode is by appending the parameter
vildemomode
to the URL you want to test. Don’t forget the?
. Example:https://example.com/shop/?vildemomode
. This method even works on websites with caching turned on. It will use the default settings.


Cross Domain Linker Settings for Google
↑ Back to topFrom version 1.10.4 of the premium plugin.
Googles domain linker functionality enables two or more related sites on separate domains to be measured as one. You’ll find more information about this functionality here and here.
The domain linker values need to be passed as an array to the filter. The plugin will then output all values as a JavaScript formatted domain linker script.
You’ll find a list of all possible parameters over here.
Basic example with multiple domains
: You can list multiple string values in the property of the domain. When the property of the domain has at least one value, gtag.js
will accept incoming domain links by default. This allows you to use the same code snippet on every domain.
add_filter('wpm_google_cross_domain_linker_settings', function (){
return [
"domains" => [
'example.com',
'example-b.com',
]
];
});
Example output:
gtag('set', 'linker', {
'domains': ['example.com', 'example-b.com']
});
decorate_forms
: If you have forms on your site that point to the destination domain, set the decorate_forms
property to true
.
add_filter('wpm_google_cross_domain_linker_settings', function (){
return [
"domains" => [
'example.com',
'example-b.com',
],
"decorate_forms" => true,
];
});
url_position
: To configure the linker parameter to appear in the URL after a fragment (#
) instead of as a query parameter (?
) (e.g. https://example.com#_gl=1~abcde5~
), set the url_position parameter to fragment.
add_filter('wpm_google_cross_domain_linker_settings', function (){
return [
"domains" => [
'example.com',
'example-b.com',
],
"decorate_forms" => true,
"url_position" => 'fragment',
];
});
accept_incoming
: Once a user arrives at a page on the destination domain with a linker parameter in the URL, gtag.js needs to be configured to parse that parameter.
If the destination domain has been configured to automatically link domains, it will accept linker parameters by default. No additional code is required on the destination domain.
If the destination domain is not configured to automatically link domains, you can instruct the destination page to look for linker parameters. Set the accept_incoming
property to true
.
add_filter('wpm_google_cross_domain_linker_settings', function (){
return [
"accept_incoming" => true
];
});
Custom Brand Taxonomy
↑ Back to topFrom version 1.10.9 of the plugin.
If you are using your own product attribute to store brand names for products, you can use this filter to output the brand names for the pixels. The filter must return the taxonomy name for the brand attribute. Usually it is the attribute slug, prefixed with
pa_
. In this example it would bepa_custom-brand
. Depending on how the taxonomy has been created, it also can only be the slugcustom-brand
. If one doesn’t work make sure to try the other.
add_filter('wpm_custom_brand_taxonomy', function (){
return 'pa_custom-brand';
});
Add custom order confirmation statuses to process
↑ Back to topFrom version 1.16.2
The reason why this only happens in the pro version of the WooCommerce Pixel Manager is because the pro version uses the Google Measurement Protocol to transmit purchase events to Google. The advantage of the Measurement Protocol is that it is much more accurate than the browser pixel. But if custom order statuses are added it can happen that some purchase events won’t be tracked properly. The below filter helps you to fix this.
/wp-content/themes/child-theme/functions.php
add_filter('wpm_register_custom_order_confirmation_statuses', function ( $statuses ) {
$statuses[] = 'confirm'; // Adds a new custom status called 'confirm'
return $statuses;
});
Disable adding the tax to product prices
↑ Back to topINFO
From version 1.20.0
By default, the Pixel Manager outputs the prices on product pages including the tax. If you want to turn it off, please use the following filter.
INFO
Don’t mix this up with the setting for the purchase confirmation page. The plugin offers a setting to include or exclude tax and shipping on the purchase confirmation page. This is a different setting and only affects the output for the conversion pixels on the purchase confirmation page.
/wp-content/themes/child-theme/functions.php
add_filter('pmw_output_product_prices_with_tax', '__return_false');
Add Facebook tracking exclusion patterns
↑ Back to topINFO
From version 1.25.1
Facebook doesn’t allow the tracking of URLs that contain potentially violating personal data (PII). This is why Facebook has implemented a check that under certain conditions detects such URLs and throws a warning in the event manager.
Such a URL might look like this: https://example.com/shop-feature/?firstname=John&lastname=Doe
By default, the Pixel Manager tracks all URLs, because generally WordPress and WooCommerce don’t add PII data to URLs. But, WordPress and WooCommerce customizations may add such PII to URLs. In such a case you might run into warning messages in the Facebook event manager, requesting you to fix those.
In order to address this, we implemented a filter that gives you the option to add URL exclusion patterns. Once activated the Pixel Manager will exclude all URLs from tracking in Facebook that match one or more of the exclusion patterns that have been added to the configuration.
The patterns that you can use are regular expression string patterns. In the background, the Pixel Manager uses a RegExp constructor which you can feed with those string patterns. Take a look at this article to get a better idea of how such a pattern can be constructed. Or, take a look at regex101.com with the following example, which shows a way to construct a matching pattern (take note of the backslashes which are necessary to escape forward slashes in the URL).
/wp-content/themes/child-theme/functions.php
add_filter('pmw_facebook_tracking_exclusion_patterns', function($patterns) {
$patterns[] = 'parcel-panel';
return array_unique($patterns);
});
Block IPs from server-to-server events
↑ Back to topFrom version 1.27.8
the Pixel Manager automatically prevents server-to-server events that are triggered by known bots. This reduces the load on the server.
The following filter allows users of the Pixel Manager to add more IPs and IP ranges to the exclusion list.
The IPs can be written either as normal IPs or as CIDR ranges.
Learn more about how to specify a CIDR range over here:Â https://www.ipaddressguide.com/cidr
/wp-content/themes/child-theme/functions.php
add_filter('pmw_exclude_ips_from_server2server_events', function($ip_exclusions) {
// normal IP
$ip_exclusions[] = '123.123.123.123';
// CIDR range
$ip_exclusions[] = '123.123.123.123/32';
return array_unique($ip_exclusions);
});