Upgrading to 1.1.13
When updating the Hyvä Theme to version 1.1.13, please note to always update the hyva-themes/magento2-theme-module
to the latest version as well.
Even if not updating the Default Theme to 1.1.13, it should always be safe to update Hyva_Theme
module to the latest version (package hyva-themes/magento2-theme-module
).
Magento 2.4.3-p2 and 2.4.4 compatibility
The form in the template Magento_Customer/templates/form/resetforgottenpassword.phtml
requires a new parameter to be added.
If you have customized this file in a child theme, be sure to include the changes for this file in your child themes when upgrading Magento to 2.4.3-p2 or 2.4.4 (or later).
the changes are:
diff --git a/Magento_Customer/templates/form/resetforgottenpassword.phtml b/Magento_Customer/templates/form/resetforgottenpassword.phtml
index 4640b71f0da5b523508e11838e183bcb123e5efa..e1aed1aa7543ccca86e56a5e37bd1154f35bad10 100644
--- a/Magento_Customer/templates/form/resetforgottenpassword.phtml
+++ b/Magento_Customer/templates/form/resetforgottenpassword.phtml
@@ -16,7 +16,10 @@ use Magento\Framework\Escaper;
<div class="container mb-12">
<div class="w-full md:w-1/2 card my-8">
<form action="<?= $escaper->escapeUrl(
- $block->getUrl('*/*/resetpasswordpost', ['_query' => ['token' => $block->getResetPasswordLinkToken()]])
+ $block->getUrl(
+ '*/*/resetpasswordpost',
+ ['_query' => ['id' => $block->getRpCustomerId(), 'token' => $block->getResetPasswordLinkToken()]]
+ )
) ?>"
x-data="initForm()"
x-on:submit="return checkPasswordsMatch()"
Otherwise, upgrading to Hyvä version 1.1.13 requires no manual changes
A full list of changed files can be found here:
- https://gitlab.hyva.io/hyva-themes/magento2-default-theme/-/compare/1.1.12...1.1.13
- https://gitlab.hyva.io/hyva-themes/magento2-theme-module/-/compare/1.1.12...1.1.13
Noteworthy changes in external repositories
A localization file with all Hyvä-specific phrases can be found in the theme at i18n/en_US.csv
.
Pre-build localizations containing the strings only in Hyvä can be found at https://gitlab.hyva.io/hyva-themes/internationalization.
Currently, the following locales are available:
de_DE
es_ES
(many thanks to Marc Bernabeu from Onestic!)fr_FR
(many thanks to Julien from Lumao!)it_IT
(many thanks to Salvatore Capritta from Synthetic!)nl_NL
pl_PL
(many thanks to Michal Gałężewski from Macopedia!)
Changelogs
Changelogs are available from the CHANGELOG.md in the codebase, or here:
Known Issues
- None so far