Adding Msg To Review Cart Screen

greenspun.com : LUSENET : S-Mart Shopping Cart : One Thread

I would like to add a note to my review cart screen that says if any items appear in your cart that were not ordered, or you have changed your mind, please change the quantity to zero and press recalculate!

Any help would be greatly appreciated!

Thanks

CJ

-- CJ Kaplan (reptile@reptilemall.com), October 20, 1999

Answers

Find this section in smart.cgi -

# Show the order form sub buy_items1 { &print_header; &list_items; open (ORDER,"$basepath$delim$order") || print "Could not open $basepath$delim$order $! \n"; while () { print $_; } close(ORDER); &print_footer; }

After the &print_header; line add your comment something like this -

print "If any items appear in your cart that were not ordered please change the quantity to zero and press recalculate";

-- Nancy S. Brown (nsbrown@columbus.rr.com), October 27, 1999.


Moderation questions? read the FAQ