File: D:/web/circ.itp/order-update-from-woo-trigger.asp
<%Option Explicit%>
<!--#include file="woo-to-itp.asp"-->
<%DisableCache%><!DOCTYPE html>
<html>
<head>
<title>Order Update from WooCommerce Trigger</title>
</head>
<body>
<h3>Order Update from WooCommerce Trigger</h3>
<%
' (SS,4/8/25)
If Not IsWooLiveMode Then
Response.Write "<p><strong>In ""Test mode"", no data written to CIRC Shopping Admin database</strong></p>" & NL
End If
' (SS,24/4/25) following prevents GTM iframe noscript version showing in external scripts (via Finalise)
'GTMDisable
' DoWooCommerceOrderToITP
Dim LOrderID
LOrderID = CleanRequestQueryString("order_id")
WC_GetOrder LOrderID
%>
</body>
</html>