Upgrading to 1.1.13
When upgrading to Hyvä Theme 1.1.13, always update the hyva-themes/magento2-theme-module package to its latest version. This module can be safely updated independently, even if you are not updating the Default Theme.
Magento 2.4.3-p2 and 2.4.4 Compatibility
For Magento 2.4.3-p2, 2.4.4, and later versions, the Magento_Customer/templates/form/resetforgottenpassword.phtml template requires an additional parameter. If you have customized this file in a child theme, ensure you apply the following changes:
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()"
Noteworthy Changes in External Repositories
Hyvä-specific phrases are available in the theme at i18n/en_US.csv. To install pre-built localizations for Hyvä-specific strings, use Composer:
Replace nl-nl with your desired language code.
Currently, the following locales are available:
de_DEes_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_NLpl_PL(many thanks to Michal Gałężewski from Macopedia!)
Additional locales are available on your packageist URL or the internationalization group on our Gitlab (for contributors only).
Changelogs
Access changelogs from the CHANGELOG.md file in the codebase, or via these links:
Tooling
For general upgrade guidance, refer to the Hyvä Theme upgrade documentation.