Rocket Beetle
Forum Replies Created
-
Forum: Plugins
In reply to: [Beetle Tracking - Cloudflare Zaraz for WooCommerce] PHP warningIt has just been fixed in 1.5.12
Thank you for the workaround for now, we will find a better solution.
As it is right now, the plugin only support standard form event, and seams like Contact Form 7, does not have a Normal “submit” button, so that the reason for the error.
We are however working on upgrades, and as I said before form plugins is a focus of ours, but it seamed like your did find a good way to track the form anyway here:
https://wordpress.org/support/topic/workaround-for-tracking-contact-form-7/We just released the first version of the pro:
Thank you @djdanj that comment and video helped a lot. I have just shipped a new version which fixes this.
Could it be that your users sometimes never comes back to the thank-you page ? This is where the plugin is tracking the Order Completed.
In our pro plugin which will be released next week there is an option to still send the Order Completed to Zaraz when the order changes to lets say Completed, or whatever status you choose.We dont have any conflict with standard WooCommerce as I see it, try to see here:
https://capture.dropbox.com/aNN6h4kp5rxg7o82At our end everything works, so in order to help you could you create similar video, so I can see which blocks it is you have problems with, on where and so on.
Also maybe open your Developer tools with the tab on Console, so I can see the conflicts there.We still dont understand which block it is you are trying to load, and are you sure it is our plugin which is the problem ?
Could you give us a bit more feedback how to replicate this issue ?
We have tested with WooCommerce 8.8.3 and dont see any issues.
Thank you for finding this, a update has just been shipped.
Forum: Plugins
In reply to: [Beetle Tracking - Cloudflare Zaraz for WooCommerce] Variation FlagThats a good idea, we will add it in a future update.
It depends a bit about the updates, sometimes Cloudflare update some keys in the json, so we need to export and import again.
We are looking at doing all this through their API, so in future in work be necessary.
Forum: Plugins
In reply to: [Beetle Tracking - Cloudflare Zaraz for WooCommerce] PHP ErrorThank for the feedback.
It has just been fixed in version 1.4.3They are going to have two different form_id which also should be submitted to GA4, but both event will be the event called “Form”, but try to see if you can show the attributes which form_id will be an attribute.
We are considering when make our integration to form plugins that it will actually use the Form Title which would be a better attribute, but for now form_id was the easy part to include.I have altered your code, please try with that:
function wpf_dev_event_after_submit() { ?> <script type="text/javascript"> (function() { jQuery(window).on('load', function() { // Bind to the form submission success event for WPForms forms submitted via AJAX. jQuery('.wpforms-ajax-form').on('wpformsAjaxSubmitSuccess', function(e, response) { // Retrieve the form ID attribute. var formId = jQuery(this).attr('data-formid'); // Check if the form ID matches one of the targeted forms. if (formId === '7729' || formId === '7705') { // Track the event with Beetle Tracking, including the form ID. beetle_tracking.track('Form', { 'form_id': formId }); } }); }); })(); </script> <?php } add_action('wp_footer', 'wpf_dev_event_after_submit', 10);