Navidium Checkout Testing

Intelligems' Navidium integration allows merchants to test Navidium's shipping protection upsell at checkout via an Intelligems content test. You can test:

  • Widget on vs. off

  • The minimum fee offered

  • The fee percent

To set up a Navidium checkout test:

  1. Enable "Use Intelligems App Config" in the Navidium settings Extensions page

  2. Create a new Intelligems Onsite Edit content test

  3. For the groups for which you want to test different settings than the current defaults, inject the following Javascript:


// change the configurations below to what you want to test
// you only need to specify configurations that you want
// to behave differently than your current Navidium settings
window._igNavidiumConfig = {
    isOn: true,
    pctFee: 5, // 5 here means 5%
    minFee: 3,
}

  const res = fetch("/cart/update.js", {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      attributes: {
        '_igNavidiumConfig': JSON.stringify(window._igNavidiumConfig)
      },
    }),
  })

Last updated