To get the View cart to display on your page go to Preferences > Store Text > Store Pages and check the radio button for Text in the [View Cart]: area. You can also change the text that displays there if you want.
To add items to the header bar (by Home) you would edit the page template and in the section below add the information you want.
- Code: Select all
<div id="headlinks">
<ul class="right">
<li class="navlinks"><a href="[-- MyStoreURL --]">[-- STORE.Home --]</a></li>
[-- IF GiftCert --]
<li class="navlinks">[-- GiftCertlink --]</li>
[-- END_IF --]
[-- IF SC_Registration --]
[-- INCLUDE Modern-crLinks.sst PROCESS --]
[-- END_IF --]
<li class="navlinks"><a href="[-- SHOPPING_CART_URL --]">[-- STORE.1 --]</a></li>
</ul>
</div><!-- end headlinks -->
To put things in the right column you can put it in the Page Text 3 field or edit the page template and in this section add your code
- Code: Select all
<td id="right">
<div id="links">
[-- IF TELLAFRIEND --]
<li class="inline">[-- TELLAFRIEND VAR.TFLink --]</li>
[-- END_IF --]
[-- IF GiftCert --]
<li class="inline">[-- GiftCertlink --]</li>
[-- END_IF --]
<li class="inline"><a href="[-- SHOPPING_CART_URL --]">[-- STORE.1 --]</a></li>
</div><!-- end links -->
[-- IF PAGE.Text3 --]
<div id="righttext">
[-- PAGE.Text3 --]
</div><!-- end righttext -->
Note that your store is a Manager store and the Mini cart feature is a Pro level feature so you won't be able to display that.