# Enable manual capture Allow separate authorization and capture for eligible Stripe payment methods. Stripe supports manual capture for some payment method types. You can configure this behavior in the application settings page by setting the `Payment Action` property of an eligible payment method to **Authorize Only**. Typically, enabling manual capture for a newly launched payment method that supports it requires upgrading your Stripe module. This guide instructs you how to enable manual capture for eligible payment methods without upgrading the Stripe module by updating the payment method helper file directly. ## 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 │ └── di.xml ├── Plugin/ │ └── Helper/ │ └── PaymentMethodPlugin.php └── registration.php ``` Inside `registration.php`, register your module with Magento. ```php ``` Inside `etc/di.xml`, define the following plugin: ```xml ``` Inside `Plugin/Helper/PaymentMethodPlugin.php`, create the an `afterMethod` interceptor: ```php