New Zenner
- Join Date:
- May 2007
- Posts:
- 23
- Plugin Contributions:
- 0
How to edit text for minimum order mod?
Hello, I installed a minimum order mod found at http://www.modyourzencart.com/free-of-charge/general-modules/min-order-amount

How can I change this text (TWENTY_DOLLAR_MINIMUM_ORDER_PLEASE_) to $20 Minimum order please. And instead of burgandy change the notification area red.
I was messing around with tpl_shopping_cart_default.php
<?php // BOF MIN ORDER AMOUNT if ($_SESSION['cart']->total < MIN_ORDER_AMOUNT) {?> <div class="messageStackError"><?php echo sprintf(TWENTY_DOLLAR_MINIMUM_ORDER_PLEASE, $currencies->format(MIN_ORDER_AMOUNT)); ?></div>Every time a I take out the under scores or try to add $20 in the line I get an error message on my websites shopping cart content display.
Does anyone know a solution for this.
Thank you