Skip to content

InstantCheckout/instant-magento2

Folders and files

NameName
Last commit message
Last commit date
Mar 11, 2024
Mar 14, 2024
Apr 1, 2024
Mar 12, 2024
Nov 5, 2024
Mar 18, 2024
Mar 12, 2024
Jul 15, 2024
Mar 17, 2023
Mar 20, 2024
Mar 18, 2024
Apr 30, 2023
Aug 27, 2022
Sep 8, 2021
Sep 7, 2021

Repository files navigation

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;
            ?>