I was following instructions for adding a min order. I was doing fine until I got to the tpl_shopping_cart_default.php.
I changed what the "read me" said " find:
<?php } // show update cart button ?>
<td class="main" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>'; ?></td>
replace with:
<?php } // show update cart button ?>
<?php // BOF MIN ORDER AMOUNT ?>
<?php if ($cart->show_total() >= MIN_ORDER_AMOUNT) { ?><td class="main" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>'; ?></td><?php }?>
<?php // EOF MIN ORDER AMOUNT ?>"
and now Im getting an error I cant fix... HELP PLEASE!! Im learning Zen as I go and still not as familiar as I should be.![]()
![]()
Here is the error" Parse error: parse error, unexpected '}' in /home/sinfully/public_html/wholesale/includes/templates/template_default/templates/tpl_shopping_cart_default.php on line 139"



