# Disable specific shipping methods in Express Checkout modals Remove specific shipping methods from the Express Checkout modal. Certain shipping methods, like **Pick up from store**, might require additional customer input, such as the pickup address. These aren’t suitable for Express Checkout wallets, which don’t provide a way to customize the payment modal. If you use this kind of shipping method, you can disable it for Express Checkout using a module customization. ## Create a new module Create a new module with the following directory structure. Replace `Vendor` with your preferred vendor name. ``` app/code/Vendor/StripeCustomizations/ ├── etc/ │ └── module.xml ├── Plugin/ │ └── Api/ │ └── Response/ │ └── ECEResponse.php └── registration.php ``` Inside `registration.php`, register your module with Magento. ```php ``` Inside `etc/di.xml`, define the following plugin: ```xml ``` Inside `Plugin/Api/Response/ECEResponse.php`, create the an afterMethod interceptor: ```php