Changed lines at line 2
2: 1. Side Menu
3: The side menu can be configured in various ways:
4: A. Whether the Side menu is displayed for the entire application is set in web.xml parameter: showCategorySideMenu (true/false). Setting this to off will display for entire appliaction.
5: A. If the side menu is on application wide, pages can decide no to display the side menu. This is done through:
6: i.In ApplicationResources: need to define a broseMenu.xx if the page should display or not the sidebar
7: i. In the jsp for that page page add the tag <meta name="displayBrowseMenu" content="<fmt:message key="browseMenu.xx"/>"/>
8: i. by default all pages will display if global var is set
9: ----
10: 1 Side Menu
11: The side menu can be configured in various ways:
12: A. Whether the Side menu is displayed for the entire application is set in web.xml parameter: showCategorySideMenu (true/false). Setting this to off will display for entire appliaction.
13: A. If the side menu is on application wide, pages can decide no to display the side menu. This is done through:
14: i. In ApplicationResources: need to define a broseMenu.xx if the page should display or not the sidebar
15: i. In the jsp for that page page add the tag <meta name="displayBrowseMenu" content="<fmt:message key="browseMenu.xx"/>"/>
16: i. by default all pages will display if global var is set
17: ----
18: 1 Products
19: Products can be disabled in web.xml config settings:
20: {code}
21: <context-param>
22: <param-name>allowProducts</param-name>
23: <param-value>true</param-value> <!-- true/false (false will also disable specials and cart -->
24: </context-param>
25: {code}
26: ----
27: 1 Cart
28: The shopping cart can be disabled in web.xml config settings:
29: {code}
30: <context-param>
31: <param-name>useCart</param-name>
32: <param-value>true</param-value> <!-- true/false -->
33: </context-param>
34: {code}
35: ----
36: 1 Specials
37: Specials can be disabled in web.xml config settings:
38: {code}
39: <context-param>
40: <param-name>allowSpecials</param-name>
41: <param-value>true</param-value> <!-- true/false -->
42: </context-param>
43: {code}
44: ----
45: 1 Services
46: Services can be disabled in web.xml config settings:
47: {code}
48: <context-param>
49: <param-name>allowServices</param-name>
50: <param-value>true</param-value> <!-- true/false -->
51: {code}
52: ----
53: 1 Member Sign Up
54: Users can automatically signup. This can be disabled in web.xml config settings:
55: {code}
56: <context-param>
57: <param-name>allowMemberSignup</param-name>
58: <param-value>false</param-value> <!-- true/false -->
59: </context-param>
60: {code}
61: ----
62: 1 Password Hint
63: Users can ask (in login screen) to have a password hint mailed to them. This can be disabled in web.xml config settings:
64: {code}
65: <context-param>
66: <param-name>allowPasswordHint</param-name>
67: <param-value>false</param-value> <!-- true/false -->
68: </context-param>
69: {code}