From 4414545128fdef01a2bf307d10ced3ddc1ad67d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Th=E1=BA=BF=20Vinh?= Date: Wed, 16 Jun 2021 09:51:43 +0700 Subject: [PATCH 1/6] [2.3.7] Fix popup login not working --- view/frontend/web/js/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/frontend/web/js/popup.js b/view/frontend/web/js/popup.js index 7fdb37d..62c3122 100755 --- a/view/frontend/web/js/popup.js +++ b/view/frontend/web/js/popup.js @@ -24,7 +24,7 @@ define( 'Magento_Customer/js/customer-data', 'mage/translate', 'Magento_Ui/js/modal/modal', - 'mageplaza/core/jquery/popup' + 'Mageplaza_Core/js/jquery.magnific-popup.min' ], function ($, customerData, $t, modal) { 'use strict'; From b9123accd7d276081a1c1b59ff4ec8965d032ac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Th=E1=BA=BF=20Vinh?= Date: Mon, 28 Jun 2021 08:56:26 +0700 Subject: [PATCH 2/6] [2.3.7] Fix can't login after login first time --- Controller/Social/Login.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Controller/Social/Login.php b/Controller/Social/Login.php index 7f5ee96..4a5998f 100755 --- a/Controller/Social/Login.php +++ b/Controller/Social/Login.php @@ -90,8 +90,7 @@ public function execute() } $customer = $this->createCustomerProcess($userProfile, $type); - - } else { + } elseif ($this->apiHelper->isCheckMode()) { if ($customerData->getData('password_hash') === null) { $userProfile->hash = ''; $this->session->setUserProfile($userProfile); From e20e2ae979640692b76ea5e92c2ac0782e1ac9ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Th=E1=BA=BF=20Vinh?= Date: Tue, 29 Jun 2021 15:25:45 +0700 Subject: [PATCH 3/6] [2.3.7] Fix isCheckMode() error --- view/frontend/layout/default.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/frontend/layout/default.xml b/view/frontend/layout/default.xml index 0bdea05..cfde3ca 100644 --- a/view/frontend/layout/default.xml +++ b/view/frontend/layout/default.xml @@ -33,7 +33,7 @@ - + From 379d5bf1b47b56342b0e2092349d9c534717962b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Th=E1=BA=BF=20Vinh?= Date: Wed, 30 Jun 2021 09:48:46 +0700 Subject: [PATCH 4/6] --change config.xml --- etc/config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/config.xml b/etc/config.xml index 76cf69a..95bcbbc 100755 --- a/etc/config.xml +++ b/etc/config.xml @@ -30,7 +30,7 @@ 0 .header.links, .section-item-content .header.links, .authorization-link 1 - 1 + 0 1,2,3,4 popup_slide 0 From 70b7b7fd94ddfb87b0041f11f3b86d01eb13f05d Mon Sep 17 00:00:00 2001 From: Bruno Date: Wed, 21 Jul 2021 15:10:50 +0700 Subject: [PATCH 5/6] Compatible Customer Approval --- Controller/Popup/Create.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Controller/Popup/Create.php b/Controller/Popup/Create.php index 087512c..c2d198e 100644 --- a/Controller/Popup/Create.php +++ b/Controller/Popup/Create.php @@ -217,6 +217,10 @@ public function execute() } } catch (LocalizedException $e) { $result['message'][] = $this->escaper->escapeHtml($e->getMessage()); + if ($this->session->getMpRedirectUrl()) { + $result['redirect'] = $this->session->getMpRedirectUrl(); + $this->session->unsMpRedirectUrl(); + } } catch (Exception $e) { $result['message'][] = __('We can\'t save the customer.'); } From 25cb0a94beda1f8009eebb171dced44a5568bef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Th=E1=BA=BF=20Vinh?= Date: Sun, 1 Aug 2021 22:32:46 +0700 Subject: [PATCH 6/6] --update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7913234..62beac6 100755 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "roave/security-advisories": "dev-master" }, "type": "magento2-module", - "version": "2.9.0", + "version": "2.10.0", "license": "proprietary", "authors": [ {