Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Master Tag Installation

...

Code Block
<script src="https://www.dwin1.com/!!!!!.js" type="text/javascript" defer="defer"></script>
Info

Where !!!!! is your Master Tag ID. Replace the !!!!!! in the code with your Master Tag ID.

For merchants in the Setup Wizard, you can find this within Step 4 (Tracking Code Installation).

For Live Merchants, you can find this by navigating to MY ACCOUNT > ACCOUNT DETAILS
Account Details: https://account.shareasale.com/m-account.cfm

If you cannot locate your Master Tag ID, or would like to verify that you have one, please submit a ticket to our ShareASale support staff.

...

Following the official help desk article above, you can use this code below to install ShareASale's tracking into the Additional Content & Scripts field of OneClickUpsell's admin:

Info

Replace the XXXXX in the code below with your ShareASale Merchant ID (line 6). You can find this at the top-left of your ShareASale account when you are logged in.

Please also make sure that you replace the !!!! in the code with your Master Tag ID (line 14) according to the Master Tag Installation instructions above.

Code Block
<script>

var sas_tracking = encodeURI('{{customer.first_name}}' + new Date); 
var sas_subtotal = ({{checkout.subtotal_price}}) / 100;

var sas_pixel_src = "https://www.shareasale.com/sale.cfm?v=oneclickupsell1&tracking=" + sas_tracking + "&amount=" + sas_subtotal + "&merchantID=XXXXX&transtype=sale";

var sas_Pixel = new Image(); // Create a new image tag.
	sas_Pixel.src = sas_pixel_src; // Set the src parameter of the image tag to the target parameter string.
		
document.body.appendChild(sas_Pixel); // Append the newly created pixel to the body of the page.

</script>
<script src="https://www.dwin1.com/!!!!!.js" type="text/javascript" defer="defer"></script>

...

If you were emailed a link to this document, a test link may have been provided to you. If it wasn’t, you can obtain one from your account by clicking here.

NOTE: If you do not click the test link your order will not track.

The test link should direct you to your own store. Once there, please purchase any item in your store. Sometimes Merchants will have a test item worth $1.00 sale price, but above $0.00 minimum.

...