gamcoder
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] UTM Content in Order Attribution TrackingI’ve exported orders to CSV and “meta:_wc_order_attribution_referrer” column contains full URL (including utm_content and utm_term).
So the problem is with displaying the data in woocommerce dashboard. How can I fix it?
Forum: Plugins
In reply to: [WooCommerce] UTM Content in Order Attribution TrackingThank you for your reply. In the documentation you linked to, screenshot also shows only utm medium,utm campaign and utm source. No utm content.
How can I get also utm content?
Ok, I’ve opened a ticket.
Forum: Plugins
In reply to: [WooCommerce] A/B testing checkout page and checkout processOk, thanks for the answer.
Does anybody know plugins for testing checkout pages and/or checkout flows?
Thanks,
SzymonForum: Plugins
In reply to: [WooCommerce] Tracking from which sales page is an orderAny idea?
Forum: Plugins
In reply to: [WooCommerce] Tracking from which sales page is an orderThanks for a quick answer!
I haven’t probably made a good job describing what I’m looking for.
I’d like to be able to open an order in admin dashboard and see on which sales page it was added to cart
(for example like this https://ibb.co/9pgYB08)
I’ve managed (based on this: https://stackoverflow.com/questions/51915032/add-to-cart-with-custom-data-from-an-url-using-get-method-in-woocommerce-3) to make add-to-cart URLs which add notes to orders like this:
http://example.com/cart/?add-to-cart=10¬e=note-here
and on each sales page, an add-to-cart url had a different note. It’s what I was looking for, but notes are visible to users also, so I’m looking for other solution.
Thanks,
SzymonForum: Fixing WordPress
In reply to: How to disable default password reset emailThank you. It works.
This is what I added to functions.php (for the benefit of others):
add_filter("retrieve_password_message", "mapp_custom_password_reset", 99, 4); function mapp_custom_password_reset($message, $key, $user_login, $user_data ) { $message = "Otrzymaliśmy prośbę o nowe hasło do następującego konta: " . sprintf(__('%s'), $user_data->user_email) . " Jeśli to pomyłka, zignoruj tego emaila. Aby uzyskać nowe hasło, przejdź na tę stronę: https://www.mysite.com/wp-login.php?action=rp&key=$key&login=".rawurlencode($user_login)." Jeśli masz jakieś pytania, to napisz do nas na adres kontakt@mysite.com Pozdrawiam, John Doe"; return $message; }Hi,
I have the same problem, but this plugin doesn’t fix it.
When I disable password reset email, users cannot use “forgot password?” option at all. It shows a message “password reset is not allowed for this user” and the user doesn’t get my custom password reset email set in “Notification” plugin.
How can I fix it?
Thanks,
Szymon- This reply was modified 7 years, 5 months ago by gamcoder.