View Single Post
  #475  
Old 06-28-2006, 10:18 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

Try this:

Open error_message.php

FIND:

Code:
func_display("customer/home.tpl",$smarty);

Replace with:

Code:
if ($error == "error_ccprocessor_error") { func_display("customer/home_checkout.tpl",$smarty); } else { func_display("customer/home.tpl",$smarty); }
Reply With Quote