Hello @arpgst
From your description, it looks like the Pay Later tab is not rendering correctly in the admin panel. That tab is supposed to appear separately after the Styling section. If it’s missing, then the Pay Later configuration cannot be accessed normally. Please try the following steps:
1. Reconnect the plugin (recommended first step):
Go to WooCommerce > Settings > Payments > PayPal → click “Settings”
Then at the bottom, click “Disconnect” and when prompted, check the box to “Start over”.
After that, go through the onboarding again and log in with your PayPal account. This refreshes the connection and usually restores the Pay Later settings tab properly.
2. Disable Pay Later manually (if you don’t plan to use it):
If you don’t want Pay Later functionality at all and just want it removed, you can disable it using the following filters in your theme’s functions.php file or via a custom plugin:
add_filter('woocommerce_paypal_payments_product_buttons_paylater_disabled', '__return_true');
add_filter('woocommerce_paypal_payments_buttons_paylater_disabled', '__return_true');
This will disable both the Pay Later buttons and any Pay Later messaging site‑wide.
Let us know if the missing tab persists after reconnecting. In some cases, caching may also prevent it from loading fully.
Kind Regards,
Krystian
Thank you. I’ll let you know.