How to Change the Browse Products Button to go to the home page.
After adding to cart the Browse Products button will appear. If you would like the button to direct to a specific page add the following code in the script section of the Company Bootstrap Layout section.
<script>
$(function(){
$("#btnBrowseProducts").attr("onclick", "LinkToHome()");
}); function LinkToHome()
{
window.location.href = '/Store/Site/Home.aspx';
}
</script>
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article