Plugin Directory

Changeset 3307446


Ignore:
Timestamp:
06/06/2025 09:49:40 AM (9 months ago)
Author:
metriondev
Message:

Version 1.5.1

Location:
metrion
Files:
53 added
4 edited

Legend:

Unmodified
Added
Removed
  • metrion/trunk/js/core/events.js

    r3300778 r3307446  
    553553        // Payment session exclusions
    554554        var payment_referrer_exclusions = [
    555             "anbamro.nl", "asnbank.nl", "pay.mollie.nl", "mollie.com", "paypal.com",
     555            "anbamro.nl", "asnbank.nl", "pay.mollie.nl", "mollie.com", "ecommerce-gateway.mollie.com" ,"paypal.com",
    556556            "klarna.com", "girogate.be", "snsbank.nl", "rabobank.nl", "knab.nl",
    557557            "bunq.com", ".ing.nl", "regiobank.nl", "triodos.nl", "vanlanschot.nl",
  • metrion/trunk/js/google_ads/events.js

    r3290502 r3307446  
    4848            gtag_script.onload = function() {
    4949                window.dataLayer = window.dataLayer || [];
    50                 function gtag(){dataLayer.push(arguments);}
    51                 gtag('js', new Date());
    52                 gtag('config', (window.metrion_api.google_ads_tag_id));
     50                window.gtag = function(){dataLayer.push(arguments);}
     51                window.gtag('js', new Date());
     52                window.gtag('config', (window.metrion_api.google_ads_tag_id));
    5353                start_google_ads_event_handling();
    5454            }
     
    163163                            'google_business_vertical': 'retail'
    164164                        });
    165                         collective_value = parseFloat(collective_value) + (parseFloat(event_data.event_body.items[google_ads_item_i].price) * parseInt(event_data.event_body.items[google_ads_item_i].quantity));
     165                        collective_value = parseFloat(collective_value) + (parseFloat(event_data.event_body.items[google_ads_item_i].price));
    166166                    }
    167167                }
  • metrion/trunk/main.php

    r3306539 r3307446  
    33* Plugin Name:          Metrion
    44* Description:          Skip manual implementation, sync data directly tailored to destinations like Google Ads and Meta Ads.
    5 * Version:              1.5.0
     5* Version:              1.5.1
    66* Author:               Metrion
    77* Author URI:           https://getmetrion.com
     
    1212if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    1313
    14 define('GLOBAL_METRION_PLUGIN_VERSION', '1.5.0');
     14define('GLOBAL_METRION_PLUGIN_VERSION', '1.5.1');
    1515
    1616// Register plugin settings for webhook URL, API path, debug mode, cookie name, and expiration time
     
    263263    //if (isset($_GET['page']) && $_GET['page'] === 'metrion-settings' || (isset($_POST['option_page']) && $_POST['option_page'] === 'metrion_options_group')) {
    264264    require_once plugin_dir_path(__FILE__) . 'includes/js_bundler.php';
    265    
     265
    266266    add_action('updated_option', 'metrion_regenerate_bundles_on_settings_change', 10, 3);
    267267
  • metrion/trunk/readme.txt

    r3306539 r3307446  
    44Requires at least: 3.8
    55Tested up to: 6.8
    6 Stable tag: 1.5.0
     6Stable tag: 1.5.1
    77Requires PHP: 7.1
    88License: GPLv3 or later
     
    8787== Changelog ==
    8888
     89= 1.5.1 =
     90- Updated Google Ads website conversion tag handling
     91
    8992= 1.5.0 =
    9093- Added support for all the Cookiebot CMP versions
Note: See TracChangeset for help on using the changeset viewer.