Quote:
Originally Posted by geckoday
Right. I wasn't thinking about all the site banner and navigation stuff. What you did should work fine. Probably the best way to go is at the bottom of product.php replace:
Code:
func_display("customer/home.tpl",$smarty);
with:
Code:
if ($main == 'showstf')
func_display("customer/main/send_to_friend",$smarty);
else
func_display("customer/home.tpl",$smarty);
|
Code:
if ($main == 'showstf')
func_display("customer/main/send_to_friend.tpl",$smarty);
else
func_display("customer/home.tpl",$smarty);
did not work. it loads the page without css and the send button does not work.