Jump to content

DATmedia

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by DATmedia

  1. Hi, I don't know how the official module should work, cause the QR-Codes are not permanent, so uploading a QR-Code makes no sense for me. Normally SEPA QR Codes are generated on the fly, with simple text. There are 12 lines with LF/CRLF: BCD 002 1 SCT BICOFBANKACCOUNT RECEIVERNAMEOFBANKACCOUNT IBANOFBANKACCOUNT EUR123.45 // HERE CURRENCY AND AMOUNT // LINE EMPTY // LINE EMPTY HEREPURPOSE // E.G. INVOICE NUMBER QR Generator for testing: https://www.qrcode-generator.de/solutions/epc-qr-code/ Best regards Philipp
  2. Hi, if you want to sort your tlds on domain page alphabetically you could add the following php function to "/templates/website/your-template/domain.php". Search for the line (in modern theme it is line 766) <?php if(isset($tldList) && is_array($tldList) && sizeof($tldList)){ foreach($tldList AS $row){ and add before the foreach this line: usort($tldList, function($a, $b) { return strcmp($a['name'], $b['name']); }); So it looks like: <?php if(isset($tldList) && is_array($tldList) && sizeof($tldList)){ usort($tldList, function($a, $b) { return strcmp($a['name'], $b['name']); }); foreach($tldList AS $row){ Voila, your array $tldList will be sorted alphabetically. Regards Philipp
  3. Hi together, maybe someone could build a mollie paymentmethod. API: https://docs.mollie.com/reference/v2/payments-api/create-payment WEB: https://mollie.com
  4. Hi community, I'm switching from WHMCS to WISCP. I love WISCP since the first install. Could you implement a domain price rounding? WHMCS has this built in to round up to next: none x.00 x.09 x.19 x.29 x.39 x.49 x.59 x.69 x.79 x.89 x.99 Regards Philipp
×
×
  • Create New...