rocketgmbh
Forum Replies Created
-
Actually, we have faced a problem with our localication.
In line 38 the string to format is “Okt 2, 2023 @ 1:35 PM” (de_CH) but the function is returning false because the format “M d, Y \@ g:i A” is only allowing months in english. So in this case, an error on line 43 is thrown.
Is there any clever solution to deal with different locals? As a workaround we did a string replace from Okt to Oct and all the other months which could be affected.
Kind regards
RocketHi there, so did you manage to fix this issue?
Hi, I’m still waiting for any answer? So I could tell our customer hhow long it takes… if it’s going to be done.
Thank you, do you know how much time you need?
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] track both UA and GA4Problem solved! I didn’t see it in the source code because I was logged in, sorry for this!
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] track both UA and GA4Thanks for your message.
Well I initially added both UA and GA4 with Google Tag Manager but I additonally use your Plugin to use Enhanced eCommerce.I think I should remove the trackings via Google Tag Manager and just integrate it with your plugin, but then I still have the problem with the missing UA because
add_filter( ‘woocommerce_gtag_snippet’, function( $gtag_snippet ) { return preg_replace( ‘~</script>~’, “gtag(‘config’, ‘UA-XXXXXX-13’);\n</script>”, $gtag_snippet ); } );(with the replaced UA-XXXXXX-13) doesn’t work.
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] track both UA and GA4Thank you for your message. In our theme we have a filters.php file – which works like a child theme’s functions.php file – where I added it, but it didn’t work.
Is it right, that I would only see it in the source code? Or should I also see it in the backend like a second field to enter the tracking code or something?