instant / instant-checkout
Instant Checkout Module
Installs: 10 933
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Type:magento2-module
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.*
- dev-main
- v1.9.24
- v1.9.23
- v1.9.22
- v1.9.21
- v1.9.20
- v1.9.19
- v1.9.18
- v1.9.17
- v1.9.16
- v1.9.15
- v1.9.14
- v1.9.13
- v1.9.12
- v1.9.11
- v1.9.10
- v1.9.09
- v1.9.08
- v1.9.07
- v1.9.06
- v1.9.05
- v1.9.04
- v1.9.03
- v1.9.02
- v1.9.01
- v1.8.99
- v1.8.98
- v1.8.97
- v1.8.96
- v1.8.95
- v1.8.94
- v1.8.93
- v1.8.92
- v1.8.91
- v1.8.90
- v1.8.89
- v1.8.88
- v1.8.87
- v1.8.86
- v1.8.85
- v1.8.84
- v1.8.83
- v1.8.82
- v1.8.81
- v1.8.8
- v1.8.7
- v1.8.6
- v1.8.5
- v1.8.4
- v1.8.3
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.9
- v1.7.8
- v1.7.7
- v1.7.6
- v1.7.5
- v1.7.4
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.9
- v1.6.8
- v1.6.7
- v1.6.6
- v1.6.5
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.9
- v1.5.8
- v1.5.7
- v1.5.6
- v1.5.5
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.9
- v1.4.8
- v1.4.7
- v1.4.6
- v1.4.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.9
- v1.3.8
- v1.3.7
- v1.3.6
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1
- v1.0.27
- v1.0.26
- v1.0.25
- v1.0.24
- v1.0.23
- v1.0.22
- v1.0.21
- v1.0.20
- v1.0.19
- v1.0.18
- v1.0.17
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- dev-ts/enable-rewards
- dev-wg-goLive
- dev-wg-customer
- dev-wg-accountenhancement
- dev-wg-fixCustomer
- dev-wg-fixSession
- dev-jo-magento-onboarding-improvements
- dev-wg-wdtest
- dev-use-rest-api
- dev-jo_onboarding_2
- dev-jo-onboarding
- dev-wg-stock
- dev-wg-globalgear
- dev-wg-fix
- dev-wg-fixpay
- dev-wg-1
- dev-wg-instantpay
- dev-jo-instant-pay
- dev-wg-winedirect
- dev-ts/swipe-to-buy-changes
- dev-wg-12
- dev-wg-fix2
This package is auto-updated.
Last update: 2025-01-05 06:27:53 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;
?>