Jump to content

Osaul

Member
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Osaul

  1. Will be better if you specify in this fields some "normal" data, for example: {if $productinfo.type eq "server"} <input type="hidden" name="hostname" class="form-control" id="inputHostname" value="edit.example.com"> <input type="hidden" name="rootpw" class="form-control" id="inputRootpw" value="edit"> <input type="hidden" name="ns1prefix" class="form-control" id="inputNs1prefix" value="ns1.example.com" placeholder="ns1"> <input type="hidden" name="ns2prefix" class="form-control" id="inputNs2prefix" value="NA" placeholder="ns2.example.com"> {/if}
  2. We solved this issue with next: {if $productinfo.type eq "server"} <input type="hidden" name="hostname" class="form-control" id="inputHostname" value="NA"> <input type="hidden" name="rootpw" class="form-control" id="inputRootpw" value="NA"> <input type="hidden" name="ns1prefix" class="form-control" id="inputNs1prefix" value="NA" placeholder="ns1"> <input type="hidden" name="ns2prefix" class="form-control" id="inputNs2prefix" value="NA" placeholder="ns2"> {/if} Without any additional items.
  3. When we used WHMCS v.5 we found: <table class="table table-striped table-framed table-centered no-more-tables"> <thead> <tr> <th{if $orderby eq "id"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=id">{$LANG.invoicestitle}</a></th> <th{if $orderby eq "date"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=date">{$LANG.invoicesdatecreated}</a></th> <th{if $orderby eq "duedate"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=duedate">{$LANG.invoicesdatedue}</a></th> <th{if $orderby eq "total"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=total">{$LANG.invoicestotal}</a></th> <th{if $orderby eq "status"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=status">{$LANG.invoicesstatus}</a></th> <th> </th> </tr> </thead> <tbody> {foreach from=$invoices item=invoice} <tr> <td data-title="{$LANG.invoicestitle}"><a href="viewinvoice.php?id={$invoice.id}" target="_blank"><strong>{$invoice.invoicenum}</strong></a></td> <td data-title="{$LANG.invoicesdatecreated}">{$invoice.datecreated}</td> <td data-title="{$LANG.invoicesdatedue}">{$invoice.datedue}</td> <td data-title="{$LANG.invoicestotal}">{$invoice.total}</td> <td data-title="{$LANG.invoicesstatus}"><span class="label {$invoice.rawstatus}">{$invoice.statustext}</span></td> <td class="last textcenter"><a href="viewinvoice.php?id={$invoice.id}" target="_blank" class="btn">{$LANG.invoicesview}</a></td> </tr> Replaced with: <table class="table table-striped table-framed table-centered no-more-tables"> <thead> <tr> <th{if $orderby eq "id"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=id">{$LANG.invoicestitle}</a></th> <th{if $orderby eq "date"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=date">{$LANG.invoicesdatecreated}</a></th> <th{if $orderby eq "duedate"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=duedate">{$LANG.invoicesdatedue}</a></th> <th><a href="#">{$LANG.invoicetype}</a></th> <th{if $orderby eq "total"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=total">{$LANG.invoicestotal}</a></th> <th{if $orderby eq "status"} class="headerSort{$sort}"{/if}><a href="clientarea.php?action=invoices&orderby=status">{$LANG.invoicesstatus}</a></th> <th> </th> </tr> </thead> <tbody> {foreach from=$invoices item=invoice} <tr> <td data-title="{$LANG.invoicestitle}"><a href="viewinvoice.php?id={$invoice.id}" target="_blank"><strong>{$invoice.invoicenum}</strong></a></td> <td data-title="{$LANG.invoicesdatecreated}">{$invoice.datecreated}</td> <td data-title="{$LANG.invoicesdatedue}">{$invoice.datedue}</td> {getinvoicetype invoiceid=$invoice.invoicenum refill=$LANG.invoicerefill charge=$LANG.invoicecharge title=$LANG.invoicetype} <td data-title="{$LANG.invoicestotal}">{$invoice.total}</td> <td data-title="{$LANG.invoicesstatus}"><span class="label {$invoice.rawstatus}">{$invoice.statustext}</span></td> <td class="last textcenter"><a href="viewinvoice.php?id={$invoice.id}" target="_blank" class="btn">{$LANG.invoicesview}</a></td> </tr> At now we want do it for template Six. How we can correctly add this solution to clientareainvoices.tpl?
  4. Hello John, 1) We thinking maybe there are better solution. For example few years ago we used another billing-system BILLmanager of ISPsystem. If one of our staff team starting to reply in ticket, after that nobody else can't do any with it. It is really block. 2) Together with our customers we want to see powerful searching via all data in client area. Feature request has been created. 3) "open link in new window" is really lacks for our customers.
  5. Hello, We want to hide some fields in two files: configureproduct.tpl (Hostname, Root Password, NS1 Prefix, NS2 Prefix) and clientregister.tpl (Choose Currency). But if we simply hiding some of this fields, we will receive errors, because billing-system WHMCS requires put in this fields some data. How we can do it correctly? We find {if $productinfo.type eq "server"} <div class="sub-heading"> <span>{$LANG.cartconfigserver}</span> </div> <div class="field-container"> <div class="row"> <div class="col-sm-6"> <div class="form-group"> <label for="inputHostname">{$LANG.serverhostname}</label> <input type="text" name="hostname" class="form-control" id="inputHostname" value="{$server.hostname}" placeholder="servername.yourdomain.com"> </div> </div> <div class="col-sm-6"> <div class="form-group"> <label for="inputRootpw">{$LANG.serverrootpw}</label> <input type="password" name="rootpw" class="form-control" id="inputRootpw" value="{$server.rootpw}"> </div> </div> </div> <div class="row"> <div class="col-sm-6"> <div class="form-group"> <label for="inputNs1prefix">{$LANG.serverns1prefix}</label> <input type="text" name="ns1prefix" class="form-control" id="inputNs1prefix" value="{$server.ns1prefix}" placeholder="ns1"> </div> </div> <div class="col-sm-6"> <div class="form-group"> <label for="inputNs2prefix">{$LANG.serverns2prefix}</label> <input type="text" name="ns2prefix" class="form-control" id="inputNs2prefix" value="{$server.ns2prefix}" placeholder="ns2"> </div> </div> </div> </div> {/if} Replace with <!-- {if $productinfo.type eq "server"} <div class="sub-heading"> <span>{$LANG.cartconfigserver}</span> </div> <div class="field-container"> <div class="row"> <div class="col-sm-6"> <div class="form-group"> <label for="inputHostname">{$LANG.serverhostname}</label> <input type="hidden" name="hostname" class="form-control" id="inputHostname" value="NA"> </div> </div> <div class="col-sm-6"> <div class="form-group"> <label for="inputRootpw">{$LANG.serverrootpw}</label> <input type="hidden" name="rootpw" class="form-control" id="inputRootpw" value="NA"> </div> </div> </div> <div class="row"> <div class="col-sm-6"> <div class="form-group"> <label for="inputNs1prefix">{$LANG.serverns1prefix}</label> <input type="hidden" name="ns1prefix" class="form-control" id="inputNs1prefix" value="NA" placeholder="ns1"> </div> </div> <div class="col-sm-6"> <div class="form-group"> <label for="inputNs2prefix">{$LANG.serverns2prefix}</label> <input type="hidden" name="ns2prefix" class="form-control" id="inputNs2prefix" value="NA" placeholder="ns2"> </div> </div> </div> </div> {/if} --> And still get errors (Errors.png). We want know how we can do it correctly, because on forum there so many different opinions.
  6. Hello, Together with our customer we created list of some requests (questions) for your billing-system WHMCS v6.2.2: 1) When one of our support team starting to reply in ticket from customer, other staff can see it only after one minute has been passed (Auto Refresh Every 1 minute minimum). Very often two guys of our support team starting to reply in one ticket together Do you have another solution for "blocking" ticket in admin area? Kayako has a same ticket "blocking"? 2) Search doesn't work. At now our customers can't search anything (some info in tickets, products, invoices). They can search only via subject of tickets, and only those info which displaying on monitor. Where is powerful searching via all data in client area? 3) In 5 version of WHMCS all items (services, domains, tickets, invoices) have links. Our customers can open each item (services, tickets etc) in new window of browser and compare all they need. In 6 version of billing-system opportunity "open link in new window" is available only on home page in client area and only for active services and recent support tickets. How our customer can do it with another items? Thanks in advance.
  7. Hello guys, We have been upgraded billing-system WHMCS up to v6.2.2 and starting use template Six. Some of our customers want to see credit balance when they login to client area. After that we found very nice solution (https://wiki.whmcs.com/showthread.php?106891-Display-Credit-Balance-In-Six-Template) and solved this issue. At now we must solve next issue - most of our customers want to see in My Invoices which exactly kind of transaction have all invoices (refill or charge), but without login to each invoice. If you have more 100 invoices there are very difficult to login each and check what is exactly the invoice - charge or refill balance? Do you know some good solution? We try to find something via forum, but there are no results yet. Thanks in advance.
  8. Hello guys, Anybody know what exactly happened with WHMCSDesigns? They are still unavailable: http://www.whmcsdesigns.com/clients/contact.php
  9. Hello Guys, .club|whois.donuts.co|Domain not found - doesn't work. Maybe who knows what will be work with .club?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated