Able to finish checkout without selecting drop point.
-
There’s a bug, where you under certain circumstances can finish checkout without selecting a drop point.
It seems to happen if there’s no value set for the “Drop point required” message option (webshipper_drop_point_required
), and it then tries to get the fallback usingesc_html_e()
. However this method echoes the translated value instead of returning it, meaning the error notice is never actually set for the checkout validation process, resulting in the error being ignored.esc_html__
should be used instead (specifically on line 126 ofwebshipper-automated-shipping.php
), and seems to solve the problem.I couldn’t find any place to contribute to the project myself, so I’m hoping you can have this fixed by the next version release
- The topic ‘Able to finish checkout without selecting drop point.’ is closed to new replies.