Title: Custom Amount input won&#8217;t open
Last modified: June 10, 2026

---

# Custom Amount input won’t open

 *  [Manuel Razzari](https://wordpress.org/support/users/manuelrazzari/)
 * (@manuelrazzari)
 * [1 month ago](https://wordpress.org/support/topic/custom-amount-input-wont-open/)
 * As reported before [here](https://wordpress.org/support/topic/issue-with-custom-tip-form-on-android-chrome-browser/)
   and [here](https://wordpress.org/support/topic/entry-box-disappearing-when-trying-to-enter-an-amount/):
   The “Other” tip field blinks, or closes instantly, on mobile.
 * [Explanation](https://chromestatus.com/feature/5093566007214080): Chrome treates
   touchstart and touchmove listeners on window, document, and body as passive by
   default since Chrome 56. This plugin uses delegated handlers on body for both
   click and touchstart, so preventDefault() in the touchstart path can be ignored
   and the browser may still fire a synthesized click. One tap can therefore toggle
   the custom tip panel twice, making it open and immediately close. Switching those
   handlers to click only removes the duplicate activation and the passive-listener
   console warning for users.
 * **Fix:** open **wp-content/plugins/wpc-order-tip/assets/js/frontend.js**.
 * Replace 3 instances of
   `$('body').on('click touch touchstart' …`For`$('body').
   on('click' …`
 * Hopefully this fix can be integrated back into the plugin?
    -  This topic was modified 1 month ago by [Manuel Razzari](https://wordpress.org/support/users/manuelrazzari/).
      Reason: Added count of instances to edit

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fcustom-amount-input-wont-open%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/wpc-order-tip/assets/icon-128x128.png?rev=2781003)
 * [WPC Order Tip for WooCommerce](https://wordpress.org/plugins/wpc-order-tip/)
 * [Support Threads](https://wordpress.org/support/plugin/wpc-order-tip/)
 * [Active Topics](https://wordpress.org/support/plugin/wpc-order-tip/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpc-order-tip/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpc-order-tip/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [Manuel Razzari](https://wordpress.org/support/users/manuelrazzari/)
 * Last activity: [1 month ago](https://wordpress.org/support/topic/custom-amount-input-wont-open/)
 * Status: not resolved