Thread: Cart template
View Single Post
  #8  
Old 08-29-2007, 06:45 PM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default Re: Cart template

Quote:
Originally Posted by scoobie
Just one other question if I can, if I have my own continue shopping image and I want the customer to be redirected back to the category they selected, how would I code it? I noticed when the current continue shopping gets clicked on, the customer gets sent back to the home page.

Add this to the cart.php page near the top after a group of about ten items that all start with x_session_register...

PHP Code:
$smarty->assign('link_catid'func_query_first_cell("SELECT categoryid FROM xcart_products_categories WHERE productid='".intval($cart['products'][count($cart['products'])-1]['productid'])."' LIMIT 1")); 

Then you can use this link anywhere in the cart.tpl to go back to the previous category:

Code:
<a href="home.php?cat={$link_catid}>LINK OR IMG HERE </a>
Reply With Quote