instant/instant-checkout

Instant Checkout Module

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Maintainers

Package info

github.com/InstantCheckout/instant-magento2

Issues

Type:magento2-module

pkg:composer/instant/instant-checkout

Statistics

Installs: 12 171

Dependents: 0

Suggesters: 0

Stars: 1

v1.9.24 2024-11-05 06:04 UTC

This package is auto-updated.

Last update: 2026-02-05 08:54:23 UTC


README

To add the Instant PDP button anywhere, copy and paste this block into a .phtml

            <?php
                $instantCheckoutHtml = $this->getLayout()
                ->createBlock('Instant\Checkout\Block\PdpBlock')
                ->setProduct($product)
                ->setTemplate('Instant_Checkout::ic-pdp-btn.phtml')
                ->toHtml();
                echo $instantCheckoutHtml;
            ?>