Need to hide
proceed to checkoutbutton on the cart page when session variable setNeed to add one more button
PROCEED TO APPROVALbelow theProceed to checkoutbutton on the cart page.
Followed different approached mentioned here but no luck.
checkout_cart_index.xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<!-- first approach failed -->
<!--<body>
<referenceContainer name="checkout.cart.methods">
<block class="Ken\Bestseller\Block\Onepage\MyLink" name="checkout.cart.methods.onepage.bottom" template="Ken_Bestseller::onepage/mylink.phtml">
</block>
</referenceContainer>
</body>-->
<!-- second approach failed -->
<!-- <body>
<referenceContainer name="content">
<referenceBlock name="checkout.cart.methods.onepage.bottom" template="Ken_Bestseller::onepage/mylink.phtml" />
</referenceContainer>
</body> -->
<!-- 3rd approach failed -->
<!--<body>
<referenceBlock name="checkout.cart.methods.onepage.bottom" template="Ken_Bestseller::onepage/mylink.phtml"/>
</body> -->
<!-- added custom button -->
<body>
<referenceContainer name="checkout.cart.methods" >
<block class="Ken\Bestseller\Block\Onepage\MyLink" name="custom.template.kenisum" after="checkout.cart.shortcut.buttons" template="Ken_Bestseller::onepage/mylink.phtml"/>
</referenceContainer>
</body>
</page>
asked Nov 15, 2019 at 4:41
Nagaraju Kasa
5,9518 gold badges59 silver badges116 bronze badges
1 Answer 1
Can you please try this once ?
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="checkout.cart.methods">
<referenceBlock name="checkout.cart.methods.onepage.bottom">
<action method="setTemplate">
<argument name="template" xsi:type="string">Ken_Bestseller::onepage/mylink.phtml</argument>
</action>
</referenceBlock>
</referenceContainer>
</body>
</page>
Hope this will help you!
answered Nov 15, 2019 at 4:48
Kishan Savaliya
7,8451 gold badge14 silver badges29 bronze badges
-
Let me know if this works for you then.Kishan Savaliya– Kishan Savaliya2019年11月15日 05:13:02 +00:00Commented Nov 15, 2019 at 5:13
-
1sure @Kishan Savaliya will update you shortlyNagaraju Kasa– Nagaraju Kasa2019年11月15日 05:54:29 +00:00Commented Nov 15, 2019 at 5:54
-
1Thanks, @krishan which is working fineNagaraju Kasa– Nagaraju Kasa2019年11月15日 07:20:26 +00:00Commented Nov 15, 2019 at 7:20
-
You're welcome buddy ;)Kishan Savaliya– Kishan Savaliya2019年11月15日 07:21:46 +00:00Commented Nov 15, 2019 at 7:21
-
@krishan savaliya can u advise on this issue magento.stackexchange.com/questions/295908/…Nagaraju Kasa– Nagaraju Kasa2019年11月18日 03:55:03 +00:00Commented Nov 18, 2019 at 3:55
default