Adam

Results 3 comments of Adam

Can you post your solution? I'm also trying to disable the next button if the aren't any more events.

I've found a solution which feels hacky, in the `quickcheckout` component I've added a validation in the `onSubmit` method ``` public function onSubmit() { $data = post(); if ($this->cart->shipping_method->is_inpost) {...

I've ended adding a event listen to the `QuickCheckout` component method `onSubmit` ``` public function onSubmit() { $data = post(); Event::fire('offline.mall.beforeOnSubmit', [$this->cart, $data]); // The user is not signed in....