From f4ac4401c1d96bdfffa5a9b52dec8df62a2de192 Mon Sep 17 00:00:00 2001 From: Alex P Date: Wed, 20 Dec 2023 15:18:39 +0200 Subject: [PATCH] Do no load messaging (or paypal sdk) when disabled in settings --- modules/ppcp-button/src/Assets/SmartButton.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/ppcp-button/src/Assets/SmartButton.php b/modules/ppcp-button/src/Assets/SmartButton.php index 09a205941..d887b9bf9 100644 --- a/modules/ppcp-button/src/Assets/SmartButton.php +++ b/modules/ppcp-button/src/Assets/SmartButton.php @@ -619,6 +619,10 @@ public function should_load_messages() : bool { return false; } + if ( ! $this->settings_status->is_pay_later_messaging_enabled() ) { + return false; + } + if ( ! $this->messages_apply->for_country() || $this->is_free_trial_cart() ) { return false; }