Hi,
1. You can use the "cart status" view to get a display of the cart without modification possibility. You can use the "status" view to display the shipping and payment methods selected.
For the address, you can use the "address" view. You'll get the edit buttons there and we didn't write yet a specific view to have the addresses dsiplayed without modification capability on the checkout.
Nevertheless, you can easily hide the edit icons, etc with CSS code you can add to your website.
For example, to remove the edit icons you can do something like that:
.hikashop_checkout_page_stepXXX .hika_edit{ display: none; }
where XXX is to be replaced by the step number, so probably 5 in your case.
www.hikashop.com/support/documentation/1...ize-the-display.html
2. It should work on any step. So there must be some kind of javascript error on your page. You should see the error in the error console of your browser when you're on the page. Otherwise, could you provide a link to the shop so that we could check on that ?
3.
But why can I see all five of them in my order description in the back-end?
The limit display is not enforced on the backend so that you have all the liberty to enter what you want where you want as the shop owner.
Aslo - in e-mail which is sent to administrator, in e-mail to customer, in invoice and in shipping invoice? I dont need them there.
You should normally only see in the emails the fields that have been filled.
If you edit the emails via the menu System>Emails, you can see in the preload area that there is a check on that:
if(empty($data->cart->$fieldName))
continue;
so that empty fields are not displayed. So I suppose that it comes down to how you configured your fields and that you must have something in them by default instead of no value.