From bb801447c3c71867f364ac9508d5730290ef73e6 Mon Sep 17 00:00:00 2001 From: riteelama Date: Fri, 25 Oct 2024 10:41:52 +0545 Subject: [PATCH 1/2] Add - Popup only for the setup on recurring payment --- assets/js/admin/upgrade.js | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/assets/js/admin/upgrade.js b/assets/js/admin/upgrade.js index 4965e755c..551b1e80a 100644 --- a/assets/js/admin/upgrade.js +++ b/assets/js/admin/upgrade.js @@ -176,19 +176,24 @@ jQuery( function( $ ) { }, enable_stripe_model: function( e ) { e.preventDefault(); - $.alert({ - title: evf_upgrade.enable_stripe_title, - content: evf_upgrade.enable_stripe_message, - icon: 'dashicons dashicons-info', - type: 'blue', - buttons : { - confirm : { - text: evf_data.i18n_close, - btnClass: 'btn-confirm', - keys: ['enter'] + var $button = $('#everest-forms-add-fields-credit-card') + if($button.hasClass('recurring-payment')){ + return + }else{ + $.alert({ + title: evf_upgrade.enable_stripe_title, + content: evf_upgrade.enable_stripe_message, + icon: 'dashicons dashicons-info', + type: 'blue', + buttons : { + confirm : { + text: evf_data.i18n_close, + btnClass: 'btn-confirm', + keys: ['enter'] + } } - } - }); + }); + } }, enable_authorize_net_model: function( e ) { e.preventDefault(); From e15804c7e34f4efe77acd4c199b663faf0bcf3f2 Mon Sep 17 00:00:00 2001 From: riteelama Date: Thu, 14 Nov 2024 16:39:01 +0545 Subject: [PATCH 2/2] Update - Changelog --- changelog.txt | 1 + readme.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/changelog.txt b/changelog.txt index 3b2808002..13b637e38 100644 --- a/changelog.txt +++ b/changelog.txt @@ -12,6 +12,7 @@ * Tweak - Track module activation in TG User Tracking. * Fix - Tooltips does not work on mobile. * Fix - Background color for PDF submission. +* Fix - Critical issue when the publishable key is empty in live mode for recurring payment. * Dev - amoCRM Module. * Dev - QR Generator module. * Dev - Get gist integration. diff --git a/readme.txt b/readme.txt index 942554cc6..f10305a39 100644 --- a/readme.txt +++ b/readme.txt @@ -320,6 +320,7 @@ Yes you can! Join in on our [GitHub repository](https://github.com/wpeverest/eve * Tweak - Track module activation in TG User Tracking. * Fix - Tooltips does not work on mobile. * Fix - Background color for PDF submission. +* Fix - Critical issue when the publishable key is empty in live mode for recurring payment. * Dev - amoCRM Module. * Dev - QR Generator module. * Dev - Get gist integration.