<script>
dataLayer.push({
'event': 'purchase',
'order_value': '<?php echo $totall; ?>',
'order_id': '<?php echo $block->getOrderId(); ?>',
'enhanced_conversion_data': {
'email': '<?php echo $email; ?>',
'phone_number': '<?php echo $phone; ?>'
}
});
</script>
My best guess is that a quote is missing in the PHP echo statement of this code, potentially leading to an error when pushing. Could you please check and fix it?