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()"
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 installed with composer using for example:
Replace nl-nl with your own language code
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!)
All languages can be found on your packageist url or on the internationalization group on our Gitlab (for contributors only).
Changelogs
Changelogs are available from the CHANGELOG.md in the codebase, or here:
Tooling
Please refer to the Hyvä Theme upgrade docs for helpful information on how to upgrade.