Email SupportWindows Support / Mac Support Support-Hotline: +1 (702) 997-7672

(emergency support 24/7/365 | user help Mon - Fri 8AM - 6PM PST)

Customer Display (New Configuration)

4
Oct

Customer Display Setup has changed and it is now its own individual section under the Settings Tab.

*Note: This section only aids in the customization, However, the customer display will still need to be configured under the individual POS under Sales > Points of Sale.

Customer Display has changed in the Korona back office. The Customer Display may now be found under the Settings tab. If you cannot locate it there you will need to edit menu entries.

Navigate to customer display and Click +New from the top of the screen. On the following page, you may enter a Number for the layout, and give it a Name. Next, Select the screen you would like the images and texts to Display on from the drop-down menu. You may change the Font Size to your liking simply move the slider to manipulate the size, Bigger/Smaller is shown on each end to help indicate where you are on the font size. Below you have the option to change your Font Color. 

On the right-hand side is a visual aid to guide in selecting the placement for the text and image shown on the customer screen. Below each layout is a small circle. Tick the circle below to select the screen layout that is preferable to you. Once you have done so, click Save from the top of the screen to save all your progress.

Located beneath is a Message Textbox, a text may be entered in the fields titled Welcome (Message will display during business hours) and Closed (Message will display during non-business hours). The“Booking” image will appear at any time of booking at the POS. Once you are satisfied with your selections, make sure to click the Save button from the top of the screen.

Below this section you may choose an Image to Upload, These images will also display along with the text above during regular and non-business hours.

To do so simply click on the Empty Picture Area and select +Upload Image, Select Browse to look for the image once done click the Upload button. When you are satisfied with your selection, click Apply.

Finally, you may add a Media URL (website) that will be available for customer viewing during checkout.

Accounts Configurable for Display

Change deposits and withdrawals were previously shown on the customer display like normal bookings. From a security point of view, this is of course very unfavorable. Therefore, there is now the option to show booking on customer display on the account .

All existing accounts keep the previous behavior. Deactivate the option for accounts that you no longer want to show on the customer display.

*Note: You have to save your customer display configuration (Settings > Customer displays) once and update the master data at the checkout so that the new function works at the checkout.

Setting up a Video on the Customer Display

The most common set up is to host a video on YouTube and then format the URL to auto play and loop.

 

Lets take this as an example of a regular video URL on YouTube:

https://www.youtube.com/watch?v=wf75x9jhPXI

Here would be some logic built into the URL that will allow it to automatically play and loop.

https://www.youtube.com/embed/wf75x9jhPXI?autoplay=1&loop=1&mute=1&controls=0&playlist=wf75x9jhPXI

Hosting a Video Locally for the Customer Display

This will most commonly be on a windows type PC. If you have a local video file that you wish to play on the customer display it should be possible by creating a small html script.

<html>
<body>
<video autoplay muted loop width=”100%”>

<source src=”file:///<path to video>”
type=”video/mp4″>

</video>
</body>
</html>

Once that html file is created you can put the path for that file on the appropriate URL line.