Exclude PayPal subscriptions products from automatic only payment gateways

This commit is contained in:
Emili Castells Guasch 2024-02-26 15:45:23 +01:00
parent ac8459f47e
commit 7ee7cc82f8

View file

@ -948,7 +948,10 @@ document.querySelector("#payment").before(document.querySelector("#ppcp-messages
* @return bool
*/
private function has_subscriptions(): bool {
if ( ! $this->subscription_helper->accept_only_automatic_payment_gateways() ) {
if (
! $this->subscription_helper->accept_only_automatic_payment_gateways()
&& $this->paypal_subscriptions_enabled() !== true
) {
return false;
}
if ( is_product() ) {