Magento – I need add button link to a new page in Success.phtml (checkout process), how to

onepage-checkout

I need to add a button in success.phtml page of checkout process. This button should redirect to a new page. How Can I achieve it?

Best Answer

Open Your success.phtml Page in Notepad++ or some editor

Add a Anchor Tag

HTML

<a class="sample" href="http://[Your URL to Redirect]">My button</a>

CSS

.sample{
       display:block;
       width:115px;
       height:25px;
       background:black;
       padding:10px;
       text-align:center;
       border-radius:5px;
       color:white;
}

follow this in your success.phtml page it will works

Related Topic