SimonNo
Forum Replies Created
-
hello @@duracelltomi,
i tested it on a staging plattform and the purchases run into Analytics when the other plugin is disabled. Thank you a lot for that!
But i also saw, that in the purchase-report in the enhanced ecommerce section of Ga, there are no add-to-carts. But numbers for the other steps. Also when i add a product to cart with google tag manager-preview i do not see the event “gtm4wp.addProductToCartEEC”. I can offer you login-data for the staging-side via email.
Have a nice weekend, Simon
Hello,
Ok i’m sorry, i’m going to open a new request next time.
Yes i’m using another plugin at the moment as well because i’m only testing google tag manager at the moment (but need to track the right data). The other plugin uses another UA-ID. So should i disable all the other trackings to see if the purchase-data flows in the property?
Hello @duracelltomi
thank you for your awesome plugin and descriptions.
I do get the same behaviour as descripted above on my page: https://www.campushelfer.de/de/buchen/
Here are two links to Screenshots of the order-received page:
https://ibb.co/hr0byo
https://ibb.co/nEJkr8In the Datalayer there are Values for the event:gtm4wp.orderCompleteECC but the tag is not fired as gtm4wp.orderCompleteECC isn’t part of the trigger you described here: https://gtm4wp.com/how-to-articles/how-to-setup-enhanced-ecommerce-tracking.
Thank you and best regards
Simon
Update: I just saw that for “purchase” the filter from PageView-DOM Ready _event equals gtm.dom has a read cross. Screenshot: https://ibb.co/kheTdo
- This reply was modified 7 years, 10 months ago by SimonNo.
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Can you revoke cookie access?Hey @nuovaera,
thank you for your code! There was just a little error in it. You used the wrong tokens.
That’s how the code is right and working:function delete_cookie(name, url) { document.cookie = "ginger-cookie=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;"; document.cookie = name + '=;expires=Thu, 01 Jan 1970 00:00:01 GMT;'; if(typeof url !== 'undefined'){ window.location.href = url; }else{ location.reload(); } }EDIT: When reloading on the same page, the cookie banner didn’t appear all the time. For now i add a string to the reload url [ginger_reset_cookie text=”Reset der Cookie-Einstellungen ” redirect_url=”MYURL/datenschutzbestimmungen/?ginger-reload“]
- This reply was modified 7 years, 11 months ago by SimonNo.
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Can you revoke cookie access?Hello @webgrafia,
i tried the shortcode to reset the cookie preference but nothing happens. (Version 4.1.9)
this is the the page the button is implemented on: https://www.campushelfer.de/de/datenschutzbestimmungen/The behavior i would expect is, that once i clicked on the button and the page is reloaded i get the cookie banner again and can choose again. Is this right?
Thank you and best regards
Simon
- This reply was modified 7 years, 11 months ago by SimonNo.
Forum: Plugins
In reply to: [WooCommerce] product_meta is in wrong place (Update 3.4)hey,
yes clear:both fixed it.Thanks a lot!
Best regards Simon
Hey Frank, yes the option for disabling on cart and payment-site fixed the problem and i can use the js-optimize again. I didn’t know the option is there. Thanks a lot!
Best regards
Simon
I found the problem: Autoptimize -> Javascript Bundling option activated caused the trouble. Deactivate it, resolved the problem.
Forum: Plugins
In reply to: [WooCommerce] Enable Download in Order-On-Hold Mail alreadyHello,
unfortunately i’ve found this articles before but they don’t really help me. I’ve found this https://stackoverflow.com/questions/37938239/woocommerce-give-user-access-to-downloadable-files-when-the-status-is-on-hold but it doesn’t work anymore. After adding this to my functions.php it adds the heading “Downloads” to the on-hold email and the beginning of the table with columns “Products,…” but no Download-Link or expire date
Hey Michael,
thank you so much. I just didn’t see the extra Tab for social settings. My bad!
I got it to work! Finally =)
this is the solution:
add_filter(‘woocommerce_email_subject_new_order’, ‘change_admin_email_subject’, 1, 2);
function change_admin_email_subject( $subject, $order, $order_id ) {
global $woocommerce;$blogname = wp_specialchars_decode(get_option(‘blogname’), ENT_QUOTES);
$subject = sprintf( __( ‘New Customer Order (%s) from %s %s – %s (%s)’,’woocommerce’), $order->id, $order->billing_first_name, $order->billing_last_name, wc_format_datetime( $order->get_date_created()), get_post_meta( $order->id, ‘myfield1c’, true ));
return $subject;
}with this part being important: get_post_meta( $order->id, ‘myfield1c’, true )
hey Rene,
thank you. I just sent you an Email.
Best regards
Simon
Hello Michael @visser,
Thanks for being open. I don’t think my boss wants to pay for this option. We only need it maybe once in two month. So it’s not really important for us. I just wondered if this functionality exists.
Hello,
thanks @flaviomsantos for the help. That works.
@visser Michael yes that’s exactly what i want to do.
- This reply was modified 9 years, 2 months ago by SimonNo.
wow Thank you so much Micheal!! Your support is outstanding! It works perfectly