Install Piqo on WooCommerce
WooCommerce runs on WordPress, so the install is identical to a regular WordPress site.
Follow the WordPress guide — any of the three options (header-injection plugin, theme edit, orfunctions.php hook) will pick up your shop pages, cart, and checkout automatically.
<script defer data-site="YOUR_SITE_ID" src="https://piqo.app/piqo.js"></script>Track WooCommerce conversions
Fire a custom event on the order-received page so each completed order shows up in your goals.
{{-- in your theme's thankyou.php override --}}
<script>
window.piqo && window.piqo('event', 'purchase', {
order_id: '<?php echo $order->get_order_number(); ?>',
value: '<?php echo $order->get_total(); ?>'
});
</script>No PII in props: stick to order ID and total. Skip customer name, email, and address — they don't belong in your analytics.