A hotfix package will be released today September 9th, 2026 to Solteq Commerce Cloud. It will fix a problem that caused ingredient and product option selections to be missing from the final receipt in certain circumstances. The hotfix is applied to the Kiosk module only. Back Office, POS (normal & pilot), Mobile POS and the integrated webshop will all be functioning normally and without any interruptions.
for Retail and Restaurant

Setting Up Verifone Payment Terminal

Payment Terminal settings

  1. Go to Network Settings → Network & internet and select Wi-Fi.

  2. Go to Localization SettingsSystemLanguages & inputLanguages; select the language you want to use.

Back Office Configurations

  1. Go to Configurations and select the workstation you want to use with the payment terminal.

  2. Go to the workstation’s Payment Service Settings and click the +New icon.

  3. Select/enter the following information for the terminal:

    1. Name: Card

    2. Type: VeridonePSDK

    3. Configuration: Enter here the receipt layout in HTML format (see example of a layout below)

    4. Device address: Enter the IP address of the device.

    5. Has printer: Click this switch to ON if the device as a printer.

      Verifone setting Backoffice.png
      Payment service settings
  4. Click Save to save your settings.


Example receipt layout:

HTML
<!DOCTYPE html><html><head><style>
            * {
                font-family: arial, sans-serif;
            }
            .body_text{
                font-size: 19px;
            }
            .left {
                width: 50%;
                text-align: left;
                white-space: nowrap;
            }
            .right {
                width: 50%;
                text-align: right;
                word-break: break-all;
            }
            .leftNoWidth {
                text-align: left;
                white-space: nowrap;
            }
            .rightNoWidth {
                text-align: right;
                word-break: break-all;
            }
            .center {
                text-align: center;
            }
           .barcodeImage {
               min-width: 75.591px;
           }
           .imgBarcode {
               height: 100%;
               width: 100%;
           }
           .barcode {
               position: absolute;
               bottom: 0;
               right: 3.78px;
           }
        </style></head>
<body style="">
        <div id="textrow" class="body_text">{receiptLine}</div>
        <div id="barcoderow" class="barcodeImage" style="height:18.898px">
            <img src="{BarcodeImage}" class="imgBarcode" alt="barcode" />
        </div>
</body>
</html>