How to Disable Theme and Plugin Editor...
When activated, this WordPress code snippet disallows the use of both the plugin and ...

WPCodeBox
1374
Add the Facebook “Purchase” conversion event to your WooCommerce thank you page. Ensure the Facebook Pixel Snippet is enabled for proper tracking.
<?php
add_action( 'woocommerce_thankyou', function() { ?>
<script>
fbq('track', 'Purchase');
</script>';
<?php }
);





