So very handy.Works well as I'm running a wholesale site and is exactly what I need. Is there any support for this mod?
It's running well on the latest version of Zen but there are a few issues, the breadcrumb was one, but have since commented out the home link from init_add_crumbs.php so fixed that but now have a prob that it doesn't display the error stack messages if you are not logged in and try to use form?
Think it has something to do with this bit of code?
Code:// so there's a setting that's stopping the customer to see prices, let's get a better idea of what that is // assume the customer doesn't need to log in $qo_require_login = false; switch (true) { case (STORE_STATUS >= 1): // showcase no prices $qo_error_message = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . TEXT_SHOWCASE_ONLY . '</a>'; break; case (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == ''): // customer must be logged in to browse $qo_require_login = true; break; case (CUSTOMERS_APPROVAL == '2' and $_SESSION['customer_id'] == ''): // show room only // customer may browse but no prices $qo_require_login = true; break; case (CUSTOMERS_APPROVAL == '3'): // show room only $qo_error_message = TEXT_LOGIN_FOR_PRICE_BUTTON_REPLACE_SHOWROOM; break; case (CUSTOMERS_APPROVAL_AUTHORIZATION != '0' and $_SESSION['customer_id'] == ''): // customer must be logged in to browse $qo_require_login = true; break; case (CUSTOMERS_APPROVAL_AUTHORIZATION != '0' and $_SESSION['customers_authorization'] > '0'): // customer must be logged in to browse $qo_require_login = true; break; default: // unknown error $qo_error_message = sprintf(QO_UNKNOWN_ERROR, zen_href_link(FILENAME_CONTACT_US)); break; } // customer needs to be logged in if ($qo_require_login === true) { $messageStack->add('quick_order', QO_ERROR_LOGIN_TO_PROCEED, 'error'); } else { // add standard error message $messageStack->add('quick_order', sprintf(QO_ERROR_CANNOT_PROCEED, zen_href_link(FILENAME_CONTACT_US), $qo_error_message), 'error'); } // end 'false' break; } // end switch ?>
Any help would be appreciated.
Site is at http://www.erigodvds.com/index.php?m...ge=quick_order [R18 Site]
Thanks.



