Skip to content

Instantly share code, notes, and snippets.

@nietzscheson
Last active August 13, 2024 13:30
Show Gist options
  • Save nietzscheson/d049dc9067f8627d910c1d6e36fb15cd to your computer and use it in GitHub Desktop.
Save nietzscheson/d049dc9067f8627d910c1d6e36fb15cd to your computer and use it in GitHub Desktop.
ClickWase pixels implementation in Shopify

ClickWase <3 Shopify pixels implementation

Please read the next:

{% if first_time_accessed %}
  {% if checkout.customer.orders.size > 1 %}
    <img src='https://my.pampanetwork.com/scripts/sale.php?TotalCost={{ order.total_price | money_without_currency }}&AccountId=e692920c&OrderID={{ order.order_number }}&ActionCode=recurrente&CampaignID=14b4775a&Currency=MXN' width='1' height='1'/>
  {% else %}
    <img src='https://my.pampanetwork.com/scripts/sale.php?TotalCost={{ order.total_price | money_without_currency }}&AccountId=e692920c&OrderID={{ order.order_number }}&ActionCode=nuevo&CampaignID=14b4775a&Currency=MXN' width='1' height='1'/>
  {% endif %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment