How can I prevent Pixel from re-triggering after each purchase refresh?

Hey there, I encountered a problem with my Pixel. Every time someone makes a purchase and refreshes the thank you page, it re-triggers the Pixel, counting it as a new purchase each time. I use Shopify. Do you have any idea how to fix this issue?

Покупка means purchase and every time i refresh the thank you page it retriggers.

1 Like

Hi @Kristiyan14456 ,

This is caused if the purchase event is added on Additional Script section without {% if first_time_accessed %} condition. So, please review the codes on additional script and make sure the purchase event is wrapped inside first_time_accessed

{% if first_time_accessed %} 
YOUR PURCHASE EVENT GOES HERE 
{% endif %}

If you have any concerns, you can let me know.