The Home for Magento 2 Excellence

Quality-tested Magento 2 modules. Explore. Evaluate. Elevate. #magento2

1090 Modules
617 Ready
473 Need Help
🏆 Leaderboard
Actively Maintained vv1.0.2

Abeta PunchOut — Hyva Compatibility

abeta-io/magento2-hyva

Enables Hyva theme support for the Abeta PunchOut B2B procurement module, providing Hyva-compatible frontend templates and styling so the punchout integration renders correctly on Hyva storefronts.

3,379
Downloads
Below average
0
GitHub Stars
2mo ago
Last Release
0
Open Issues
Build Passing
Ready to install

Build Tests

Composer Install
DI Compile
Templates

Code Quality

CS Coding Standard
12 warnings
PHPStan Level 9

Tested on Magento 2.4.9

Recent Test History

Each release is tested against the latest Magento version at that time.

vv1.0.2 on Magento 2.4.9
Jun 7, 2026
vv1.0.1 on Magento 2.4.9
Jun 1, 2026

Share This Module's Status

Abeta PunchOut — Hyva Compatibility Magento compatibility status badge

README

Loaded from GitHub

This repository contains the module that enables Abeta support for Hyvä. This module has a dependency on the Abeta Magento 2 module.

Installation

  1. Install the module using composer:
composer composer require abeta-io/magento2-hyva
  1. Enable the module:
bin/magento module:enable Abeta_HyvaPunchOut 
  1. Upgrade the database:
bin/magento setup:upgrade
  1. Let Hyvä know about the new module:
php bin/magento hyva:config:generate
  1. Generate the CSS files:
npm --prefix vendor/hyva-themes/magento2-default-theme/web/tailwind/ run ci
npm --prefix vendor/hyva-themes/magento2-default-theme/web/tailwind/ run build-prod

Or from your theme:

npm --prefix app/design/frontend/<Vendor>/<Theme>/web/tailwind run ci
npm --prefix app/design/frontend/<Vendor>/<Theme>/web/tailwind run build-prod

Missing styles?

Make sure that PostCSS uses the postcssImportHyvaModules plugin in your theme:

  1. Go to your theme folder: app/design/frontend/<Vendor>/<Theme>/web/tailwind
  2. Install the module:
npm install --save-dev @hyva-themes/hyva-modules
  1. Open your postcss.config.js and add this as the first line:
const { postcssImportHyvaModules } = require("@hyva-themes/hyva-modules");
  1. Make sure the plugin is includes in the plugins list:
module.exports = {
    plugins: [
        postcssImportHyvaModules,
        // ...
    ],
};

This content is fetched directly from the module's GitHub repository. We are not the authors of this content and take no responsibility for its accuracy, completeness, or any consequences arising from its use.