In my product pages, I want the Min Unit Max to be all on one line below the quantity input box and above the Add to Cart button.

To do this:

1. In includes\functions\functions_prices.php, I changed Line 411 from

Code:
  function zen_get_products_quantity_min_units_display($product_id, $include_break = true, $shopping_cart_msg = false) {
to

Code:
  function zen_get_products_quantity_min_units_display($product_id, $include_break = false, $shopping_cart_msg = false) {
2. In includes\templates\MyTemplate\templates\tpl_product_info_display.php, I added a <br /> in the following line (my 236) from

Code:
 $the_button = PRODUCTS_ORDER_QTY_TEXT . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="8" size="6" /> . zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '<br />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
to

Code:
 $the_button = PRODUCTS_ORDER_QTY_TEXT . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="8" size="6" />' . '<br />' . zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '<br />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
However, while includes\functions\functions_prices.php is not over-ridable, I am wondering if there is a better way or even an admin switch to do same.

Thanks.