Title: gamcoder's Replies | WordPress.org

---

# gamcoder

  [  ](https://wordpress.org/support/users/gamcoder/)

 *   [Profile](https://wordpress.org/support/users/gamcoder/)
 *   [Topics Started](https://wordpress.org/support/users/gamcoder/topics/)
 *   [Replies Created](https://wordpress.org/support/users/gamcoder/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/gamcoder/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/gamcoder/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/gamcoder/engagements/)
 *   [Favorites](https://wordpress.org/support/users/gamcoder/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] UTM Content in Order Attribution Tracking](https://wordpress.org/support/topic/utm-content-in-order-attribution-tracking/)
 *  Thread Starter [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [2 years ago](https://wordpress.org/support/topic/utm-content-in-order-attribution-tracking/#post-17715923)
 * I’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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] UTM Content in Order Attribution Tracking](https://wordpress.org/support/topic/utm-content-in-order-attribution-tracking/)
 *  Thread Starter [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [2 years ago](https://wordpress.org/support/topic/utm-content-in-order-attribution-tracking/#post-17713802)
 * Thank 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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CartFlows – Funnel Builder & Checkout Plugin for WooCommerce] Creating steps’ pages in Cornerstone](https://wordpress.org/support/topic/creating-steps-pages-in-cornerstone/)
 *  Thread Starter [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/creating-steps-pages-in-cornerstone/#post-11225727)
 * Ok, I’ve opened a ticket.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] A/B testing checkout page and checkout process](https://wordpress.org/support/topic/a-b-testing-checkout-page-and-checkout-process/)
 *  Thread Starter [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/a-b-testing-checkout-page-and-checkout-process/#post-11208902)
 * Ok, thanks for the answer.
 * Does anybody know plugins for testing checkout pages and/or checkout flows?
 * Thanks,
    Szymon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Tracking from which sales page is an order](https://wordpress.org/support/topic/tracking-from-which-sales-page-is-an-order-2/)
 *  Thread Starter [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/tracking-from-which-sales-page-is-an-order-2/#post-11191838)
 * Any idea?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Tracking from which sales page is an order](https://wordpress.org/support/topic/tracking-from-which-sales-page-is-an-order/)
 *  Thread Starter [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/tracking-from-which-sales-page-is-an-order/#post-11130935)
 * Thanks 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](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](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&note=note-here](http://example.com/cart/?add-to-cart=10&note=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,
    Szymon
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to disable default password reset email](https://wordpress.org/support/topic/how-to-disable-default-password-reset-email/)
 *  Thread Starter [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/how-to-disable-default-password-reset-email/#post-10972550)
 * Thank 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;
   
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Notification - Custom Notifications and Alerts for WordPress] Disable standard e-mails](https://wordpress.org/support/topic/disable-standard-e-mails/)
 *  [gamcoder](https://wordpress.org/support/users/gamcoder/)
 * (@gamcoder)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/disable-standard-e-mails/#post-10934266)
 * 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](https://wordpress.org/support/users/gamcoder/).

Viewing 8 replies - 1 through 8 (of 8 total)