Plugin Directory

Changeset 3472721


Ignore:
Timestamp:
03/02/2026 01:27:04 PM (9 days ago)
Author:
metriondev
Message:

Deploy version 1.6.7 from GitHub Actions

Location:
metrion
Files:
62 added
4 edited

Legend:

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

    r3460751 r3472721  
    770770    event_data["event_body"]["session_start_time"] =
    771771      window.metrion.session_manager.get_session_cookie_values()[2];
    772     //event_data["event_body"]["engaged_time_ms"] =
    773     //  event_data["event_unix_timestamp"] -
    774     //  window.metrion.configuration.last_interaction_unix_timestamp_ms;
    775 
    776     // Don't reset the engaged time if the event is a non-interaction event
    777     //if (
    778     // event_data["event_body"].hasOwnProperty("non_interaction") &&
    779     //  event_data["event_body"]["non_interaction"] !== "1"
    780     //) {
    781     //  window.metrion.configuration.last_interaction_unix_timestamp_ms =
    782     //    event_data["event_unix_timestamp"];
    783     //}
    784772
    785773    // If consent cookie is available and floodgate open, handle based on the metrion consent cookie. Otherwise the event will be floodgated later
     
    10641052      "clickid",
    10651053      "tid",
    1066       "_kx",
     1054      "clickId",
     1055      "channelId",
     1056      "advertiserId",
     1057      "_kx"
    10671058    ];
    10681059
  • metrion/trunk/js/woo/purchase_event.js

    r3342931 r3472721  
    2222                "order_id": window.metrion_purchase_data.order_id,
    2323                "order_total": window.metrion_purchase_data.order_total,
     24                "order_total_tax": window.metrion_purchase_data.order_total_tax,
     25                "order_total_shipping": window.metrion_purchase_data.order_total_shipping,
    2426                "currency": window.metrion_purchase_data.currency,
    2527                "items": window.metrion_purchase_data.items,
  • metrion/trunk/main.php

    r3460751 r3472721  
    33* Plugin Name:          Metrion
    44* Description:          Skip manual implementation, sync data directly tailored to destinations like Google Ads and Meta Ads.
    5 * Version:              1.6.6
     5* Version:              1.6.7
    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.6.6');
     14define('GLOBAL_METRION_PLUGIN_VERSION', '1.6.7');
    1515
    1616require_once plugin_dir_path(__FILE__) . 'includes/js_bundler.php';
  • metrion/trunk/readme.txt

    r3460751 r3472721  
    44Requires at least: 3.8
    55Tested up to: 6.8
    6 Stable tag: 1.6.6
     6Stable tag: 1.6.7
    77Requires PHP: 7.1
    88License: GPLv3 or later
     
    9393== Changelog ==
    9494
     95= 1.6.7 =
     96- Fixed a case where tax & shipping calculations were slightly off
     97
    9598= 1.6.6 =
    9699- Fixed a case where duplicate cookies were not working correctly
Note: See TracChangeset for help on using the changeset viewer.