1. Login to your WordPress Admin Account
2. Select Plugins on the left
3. Select Add New
4. Select Upload Plugin
5. Upload the plugin (attached here) in the form that appears
6. Select Plugins again on the left pane and Activate the newly uploaded plugin
7. With the plugin now active you should see ICS on the bottom of the left pane, select it
8. Enter your Campaign ID, your Public Key, and set for WooCommerce to be set to Active
NOTE: Your Campaign ID and your Public Key can be found in your ICS account when editing a campaign
9. Download a plugin to run some header script on your site. We recommend using Insert Headers and Footers. Navigate to your WordPress admin and select Plugins > Add New and then search for Insert Headers and Footers.
10. Once the plugin is downloaded and activated, go to settings and find the plugin settings as shown below.
11. Insert the following code into the Script in Header area and select Save:
<script> function setICSCookies(){ var ICSRegex = /invite=([a-zA-Z0-9%]+)/; var queryString = location.search; var ICSQueryString = queryString.match(ICSRegex); if (ICSQueryString) { document.cookie = 'invite=' + ICSQueryString[ICSQueryString.length - 1] +'; Max-Age=30000000;' + 'Path=/'; } } setICSCookies(); </script>