Install · Hyvä
Every module in the marketplace ships with Hyvä support out of the box. No separate compatibility package, no second purchase.
Step 1
Hyvä install is the same as Magento install. The difference is just which theme files get rendered.
composer require etechflow/{module-slug}
bin/magento setup:upgrade
bin/magento setup:di:compileDetailed Magento walkthrough on the Magento install page.
Step 2
Our modules ship Hyvä Tailwind sources under view/frontend/tailwind/. Hyvä picks them up via the fallback chain, but you still need to rebuild the Tailwind bundle:
cd app/design/frontend/{Vendor}/{theme}/web/tailwind
npm install
npm run build-prodOn a dev machine use npm run watch instead so your edits to module classes appear immediately.
Step 3
Run Magento's static-content deploy targeting your Hyvä theme:
bin/magento setup:static-content:deploy -t Hyva/default -f
bin/magento cache:flushAdjust the theme code if you're running a child theme.
Step 4
If you're on Hyvä Compact (the lightweight checkout-only variant). Every eTechFlow module that ships UI for the storefront also ships a Compact-compatible variant. No extra flag needed; the module detects Compact via Hyvä's registry and renders the right partial.
We've set ourselves a rule: no eTechFlow module is allowed to regress Lighthouse Performance below 85 on a stock Hyvä theme + Lockstation-shaped catalogue. Every release is measured in CI before it ships, and the score for each module is on the module's page.