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.
Package info
github.com/InstantCheckout/instant-magento2
Type:magento2-module
pkg:composer/instant/instant-checkout
v1.9.24
2024-11-05 06:04 UTC
Requires
- magento/module-catalog: 100.*|101.*|102.*|103.*|104.*
- magento/module-checkout: 100.*|101.*|102.*|103.*|104.*
- magento/module-payment: 100.*|101.*|102.*|103.*|104.*
- magento/module-sales: 100.*|101.*|102.*|103.*|104.*
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;
?>