With the release of Market 3.5, you now have the ability to add a brief message to the bottom of your shopping cart contents page.
This is a great place to comfort your customer with a reminder of your guarantee, your service, your speedy delivery, your quality, or whatever else you can think of to reinforce your visitor's trust.
To edit the message, simply go to the theme editor tool of the Wordpress administration area. Select the file "mkt_language.php" for editing.
Do a search for the line:
define('mkt_SHOPCART_FOOTER_MESSAGE', '');
Add your message between the set of single quotes near the end.
When you're finished, it will look something like:
define('mkt_SHOPCART_FOOTER_MESSAGE', 'Remember, all of our products are 100% fully guaranteed!');
Save the file, and that should do it.
One word of caution...
Single quotes in your message can break the code. If you need to use a single quote, such as in a word like don't or wouldn't, then simply add a backward slash before the single quote to "escape" the character meaning. (eg. don\'t & wouldn\'t)