Changes for page RemoveTracking
Last modified by Outhman Moustaghfir on 2024/10/23 11:52
edited by Outhman Moustaghfir
on 2024/10/23 11:52
on 2024/10/23 11:52
edited by Outhman Moustaghfir
on 2024/02/21 11:08
on 2024/02/21 11:08
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Parent
-
... ... @@ -1,1 +1,1 @@ 1 -iXPath V3.Func tions.XSLT .tracking.WebHome1 +iXPath V3.Funcitons.tracking.WebHome - Content
-
... ... @@ -6,21 +6,25 @@ 6 6 7 7 8 8 {{code language="XML"}} 9 -<TEST> <xsl:value-of select="ixf:RemoveTracking('trackingType','trkID')" ></xsl:value-of> </TEST>9 +<TEST> <xsl:value-of select="ixf:RemoveTracking('trackingType','trkID')"/> </TEST> 10 10 {{/code}} 11 11 12 12 * trackingType: The type of tracking to be removed. 13 13 * trkID: The unique identifier of the tracking entry. 14 -* syncWith: a boolean to delete all synchronized trackings associated to the tracking target.** default value is false.** 15 15 16 16 === Example : Remove Tracking === 17 17 18 18 {{code language="XML"}} 19 -<TEST> <xsl:value-of select="ixf:RemoveTracking('Product', '65d35436310db513395b30b7')" ></xsl:value-of> </TEST>18 +<TEST> <xsl:value-of select="ixf:RemoveTracking('Product', '65d35436310db513395b30b7')"/> </TEST> 20 20 {{/code}} 21 21 22 22 This example removes a tracking entry with the type 'Product' and the ID '65d35436310db513395b30b7'. 23 23 23 +=== === 24 + 24 24 == Note == 25 25 26 26 * Ensure that the provided trackingType and trkID values match an existing entry in the database. 28 +* The function will return a success message upon successful removal. 29 +* If no matching entry is found, it will return a message indicating that the entry was not found. 30 +*