Hyvä Compatibility Module Installation
This module is required to integrate Hyvä Themes with Brippo Payments Frontend in your Magento store. Below are the steps to install the module correctly.
Prerequisites
- Magento 2.x installed and configured.
- Composer installed in your environment.
- Hyvä Theme correctly installed in your Magento.
- Access to the terminal with proper permissions on the server.
Installation Steps
Enable Maintenance Mode
To prevent users from accessing the store during the installation process, it is recommended to enable maintenance mode:
$ bin/magento maintenance:enable
- 1
Install the Hyvä Themes compatibility module
$ composer require hyva-themes/magento2-ebizmarts-brippo-payments-frontend:">=1.0.6"
- 2
Install Hyvä Checkout compatibility module
Optional$ composer require hyva-themes/magento2-hyva-checkout-ebizmarts-brippo-payments:">=1.0.6"
- 3
Run the Upgrade and Compilation Process
Update Magento, compile the dependencies, and generate static content:
$ bin/magento setup:upgrade $ bin/magento setup:di:compile
- 4
Deploy Static Content
Deploy static content in the production environment. Make sure to force it so that all the necessary files are generated:
$ bin/magento setup:static-content:deploy -f
- 5
Clear Cache
Once static content is deployed, flush Magento's cache to ensure all changes are applied correctly:
$ bin/magento cache:flush
- 6
Disable Maintenance Mode
After completing the installation, disable maintenance mode to allow users to access your store again:
$ bin/magento maintenance:disable
Installation Verification
✓Visit the frontend of your store and verify that the integration with Brippo Payments is working correctly with the Hyvä Theme.
!If you encounter any issues, check the logs in
var/log to identify and resolve potential errors.