no.dots
Forum Replies Created
-
Hi Thomas,
Don’t want to bother you, but just checking in if there is any update regarding this feature. We’re still waiting for it to make some last tracking implementations in Google Tag Manager.
Looking forward to your reply!
Thanks,
– MarijnHi Thomas,
How are you doing? Are there any updates on when we can expect this feature in the plugin? ??
Thanks!
– MarijnHi Thomas,
Do you have any estimation as to when this feature will be released? We can’t wait to get started! ??
Cheers,
MarijnHaha, not sure how I missed that, sorry! Looks all good and fine to me, would be great if you’re able to publish this in an update!
For as far as I can see, this looks perfect!
I didn’t saw any variable products in your catalog. Therefor I couldn’t check if the variation SKU will be placed in the data layer on an add-to-cart event for a variable product (instead of the parent SKU, which needs to be placed in the data layer for simple products).
Could you verify that perhaps, or place a variable product in the catalog?
Thanks!
– MarijnHi Thomas,
An unofficial sku product parameter would be fantastic! It’s just needed for other channels like Facebook and Pinterest, but indeed it’s not needed for enhanced e-commerce tracking (in Google Analytics). If it’s there as an product parameter in the enhanced ecommerce object, we can extract it in a separate variable in use cases where we need it.
Thanks,
MarijnI did, but this didn’t fixed the error. I made some time tonight to dive into it. Super stupid: it turned out that I used a API key’s for “V2 invisible” while I set-up the captcha plugin for “V2 I’m a robot”.
However, now that I’m writing this, it might be a combination of both (fixing the JS errors + fixing the API keys). Hope it helps some others as well.
Thanks Shamim, for your help.
Hi @shamim51, sorry for the late response. We’ve changed it to “V2 I’m not a robot”, as you can see on the link I sent in the opening post. The error still occurs.
I would appreciate if you have any following suggestions how we can fix this. Thanks!
Forum: Plugins
In reply to: [WC Custom Thank You] Not compatible with Woocommerce Analytics Integration@nicolamustone We are having the same issues with a few of our sites. It would be an awesome addition if the plugin would support this feature. Could you let us know if you are looking to make the plugin compatible with the ‘Woocommerce Analytics Integration’? If not, we can start searching for a different solution for changing our thank you pages.
Thanks for your help!
Forum: Plugins
In reply to: [Invoices for WooCommerce] Plugin broken since update to 2.7.3Thanks! Works like a charm again.
@matthias-reuter, thank you so much for this hot-fix! We’re in need for this.
@pay4pay, could you please fix this in the following update?
Forum: Plugins
In reply to: [JSON API] Thumbnails missing from JSON responseSame problem here since a few days..
Forum: Plugins
In reply to: [WooCommerce] phone validation woocommerceThere were a lot of mistakes in that code. I made some changes, this works for me:
/* Add phone validation */ function wc_validate_phone_number() { $phone = (isset( $_POST['billing_phone'] ) ? trim( $_POST['billing_phone'] ) : ''); if ( ! preg_match( '/\(?([0-9]{3})\)?([ .-]?)([0-9]{3})\2([0-9]{4})/', $phone ) ) { wc_add_notice( __( 'Invalid Phone Number. Please enter with a valid phone number. Eg: (123) 456 7890' ), 'error' ); } } add_action( 'woocommerce_checkout_process', 'wc_validate_phone_number' ); /* End */