Our catalog and product pages are managed outside of AbleCommerce (but pull information from the database). Once the person adds something to the cart, we pull the AbleCommerce checkout process into iFRAMES within the site.
We would like to change the Keep Shopping button in the basket to point to our store, but I am not sure where to go in order to do this.
Thanks for your help.
Keep Shopping Button Link
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 50
- Joined: Mon Jul 02, 2007 9:37 pm
- Location: Chicago, IL
- Contact:
Re: Keep Shopping Button Link
Hi CASE,
For the basket page, you could open Basket.ascx.cs and modify the KeepShoppingButton_Click() function.
Here is the original code:
You would need to change it to something like this:
For the basket page, you could open Basket.ascx.cs and modify the KeepShoppingButton_Click() function.
Here is the original code:
Code: Select all
protected void KeepShoppingButton_Click(object sender, EventArgs e)
{
Response.Redirect(NavigationHelper.GetLastShoppingUrl());
}
Code: Select all
protected void KeepShoppingButton_Click(object sender, EventArgs e)
{
//Response.Redirect(NavigationHelper.GetLastShoppingUrl());
Response.Redirect("http://www.google.com");
}