Order Updates Customer Website Integration

There are two ways to integrate the Order Updates widget into your website.

Adding an iframe to your site which provides a seamless experience for your customers

This is as simple as copying and pasting this code into your webpage

<iframe src="https://orderupdates.abinitiosoftware.co.uk/login/<your customer number>" title="Check your order" style="width:100%;height:500px;border:none;"></iframe>

NOTE: Please replace <your customer number> with your AB Customer Number, this can be provided by Ab Initio.

Adding a link or button that takes your users to the order updates site

This is as simple as copying and pasting this code into your webpage

<input type="button" onclick="location.href='https://orderupdates.abinitiosoftware.co.uk/login/<your customer number>';" value="Check your order" />

Or for a link

<a href="https://orderupdates.abinitiosoftware.co.uk/login/<your customer number>">Check your order</a>

NOTE: Please replace <your customer number> with your AB Customer Number, this can be provided by Ab Initio.

Example Page

Below is a sample page that shows the three techniques mentioned above.

<html>

   <head></head>

   <body>

      <h1>This is a title</h1>

      <hr>

      <iframe src="https://orderupdates.abinitiosoftware.co.uk/login/1875" title="Check your order" style="width:100%;height:500px;border:none;"></iframe>

      <hr>

      <input type="button" onclick="location.href='https://orderupdates.abinitiosoftware.co.uk/login/1875';" value="Check your order">

      Or for a link

      <a href="https://orderupdates.abinitiosoftware.co.uk/login/1875">Check your order</a>

   </body>

</html>