Jump to content

All Activity

This stream auto-updates

  1. Yesterday
  2. Why Modern WHMCS Design Matters More Than Ever in 2026 If you're building a hosting company in 2026, your WHMCS template is no longer β€œjust a design.” It’s your: βœ” Brand identity βœ” Conversion engine βœ” Customer experience βœ” Sales funnel βœ” Trust signal Today’s customers expect a premium SaaS-style experience from the moment they land on your website. That’s exactly why Hostique was created. Introducing Hostique β€” A Premium Next-Generation WHMCS Template Hostique is a modern WHMCS template designed specifically for: βœ” Hosting providers βœ” VPS & cloud companies βœ” Domain registrars βœ” SaaS businesses βœ” Web agencies βœ” Digital service providers Built with a clean modern light UI, Hostique combines professional presentation, optimized usability, and a high-converting checkout experience into one complete solution. Modern UI. Better Experience. Higher Conversions. What Makes Hostique Different? Hostique was built with one goal: Increase trust and improve conversions. Every section is carefully designed to feel modern, premium, and professional while keeping the interface lightweight and easy to use. Modern SaaS-Style Interface Hostique uses a clean light design inspired by modern SaaS products and premium hosting brands. Features include: βœ” Soft modern UI βœ” Professional typography βœ” Consistent spacing system βœ” Premium cards and components βœ” Smooth visual hierarchy βœ” Minimal distractions The result is a more professional and trustworthy experience for your customers. Powerful Client Area Experience Hostique transforms the default client area into a premium dashboard experience. Clients can easily manage: βœ” Hosting services βœ” Domains βœ” Invoices βœ” Support tickets βœ” Account settings βœ” Product management Everything is structured for clarity, speed, and usability. High-Converting Checkout Experience Most hosting businesses lose customers during checkout. Hostique solves this with a modern conversion-focused order flow designed to reduce friction and improve user confidence. Benefits include: βœ” Clean checkout UI βœ” Better field organization βœ” Clear payment sections βœ” Faster ordering process βœ” Mobile-friendly checkout flow βœ” Improved CTA visibility A better checkout experience directly increases completed orders. 6 Professional Color Themes Hostique includes multiple professionally designed color schemes to match your brand identity. Available themes: βœ” Blue βœ” Green βœ” Purple βœ” Red βœ” Yellow βœ” Dark Each color scheme is carefully optimized for readability and modern SaaS presentation. Fully Responsive on All Devices Modern hosting customers browse from everywhere. Hostique is fully responsive and optimized for: βœ” Desktop βœ” Tablet βœ” Mobile devices Every component adapts perfectly across screen sizes for a smooth browsing experience. Built for Performance & SEO Performance directly affects: βœ” SEO rankings βœ” User engagement βœ” Conversion rate Hostique is optimized for: βœ” Fast loading speed βœ” Clean semantic structure βœ” Better Core Web Vitals βœ” Lightweight UI components βœ” Improved accessibility βœ” Modern responsive standards This helps improve both user experience and search visibility. Multi-Language & Multi-Currency Ready Hostique is designed for global hosting businesses. Features include: βœ” Multi-language support βœ” RTL-Ready & LTR compatibility βœ” Multi-currency support βœ” International-ready layouts Perfect for businesses targeting worldwide customers. What’s Included? With Hostique, you get a complete premium WHMCS experience including: βœ” Professional client dashboard βœ” Premium order & checkout pages βœ” Hosting plans UI βœ” Product details pages βœ” Billing interface βœ” Support ticket layouts βœ” Responsive account pages βœ” Full documentation βœ” Easy installation process Designed for Hosting Businesses That Want to Scale Hostique is ideal for: βœ” Shared hosting providers βœ” Cloud hosting companies βœ” VPS providers βœ” Dedicated server businesses βœ” SaaS startups βœ” Domain resellers βœ” Web hosting agencies Whether you're launching a new hosting company or upgrading an existing brand, Hostique gives your business a premium modern foundation. Why Design Directly Impacts Hosting Sales In hosting, customers compare more than pricing. They compare: βœ” Trust βœ” Presentation βœ” User experience βœ” Professionalism A modern interface increases perceived value instantly. A poor interface destroys confidence instantly. That’s why premium design is no longer optional. SEO Advantages of Hostique Hostique is optimized for modern hosting SEO strategies and relevant search intent. Built for keywords like: βœ” WHMCS Template βœ” Hosting WHMCS Theme βœ” Premium WHMCS Client Area βœ” WHMCS Checkout Template βœ” Hosting Billing Template βœ” Cloud Hosting Template βœ” Web Hosting UI βœ” SaaS Hosting Design Combined with fast performance and clean structure, Hostique helps improve visibility and engagement. Final Thoughts Your WHMCS template is not just a visual upgrade. It’s the experience your customers interact with every single day. A professional hosting business deserves: βœ” Better presentation βœ” Better usability βœ” Better conversions βœ” Better customer trust Hostique delivers all of that in one premium modern WHMCS template. Get Hostique Today Launch a premium hosting experience with: βœ” Modern UI βœ” Professional dashboard βœ” Conversion-focused checkout βœ” Multi-color themes βœ” Fully responsive layouts βœ” Optimized performance πŸš€ Upgrade your WHMCS experience today. Buy Now Launch Your Hosting Brand with Hostique
  3. I also faced the same issue, but now it looks okay. Was coming randomly
  4. Last week
  5. Grazie per la tua risposta, tempo fa ho provato anche ad aprire un ticket per avere maggiori informazioni da lui ma ad oggi non ha ancora risposto.... Attenderemo nella speranza che ci sia un aggiornamento...
  6. Ciao, Non c'Γ¨ compatibilitΓ  tra ultima versione di BX e whmcs 9.x anche gli aggiornamenti del modulo di katamaze sono fermi alla precedente release di whmcs. Sembrava stesse lavorando ad un nuovo sistema integrabile completamente sulla versione 9.x ma non ci sono ulteriori informazioni in merito e soprattutto recenti.
  7. DOM has empty staff-member div elements. I got only 2 active and 1 inactive administrators but I see more elements than should
  8. Am getting this error when I click on some thread We're sorry, but a temporary technical error has occurred which means we cannot display this site right now. Too many connections You can try again by clicking the button below, or try again later. Anybody getting this error?
  9. thanks, I tried that and other variants, but nothing worked. Still, I think this should be handled by whmcs. I've just created a feature request: https://requests.whmcs.com/idea/make-subdomain-search-returning-a-warning-instead-of-a-result
  10. Hello @vpsworker12, Thanks a lot for your reply,My discord username is modulespanel3622
  11. I think you can create some hooks like includes/hooks/preventSubdomainRegistration.php and in that add teh below code <?php /** * Prevent misleading subdomain registrations in WHMCS * * Example blocked: * subdomain.example.com * * Because WHMCS may normalize it into: * subdomain.com */ add_hook('ShoppingCartValidateDomain', 1, function ($vars) { $errors = []; /* * Original user input */ $fullDomain = trim(strtolower($vars['domain'] ?? '')); /* * Extract labels * * example.com * => 2 parts * * subdomain.example.com * => 3 parts */ $parts = explode('.', $fullDomain); /* * Allow: * example.com * * Block: * sub.example.com * test.demo.example.com */ if (count($parts) > 2) { $errors[] = 'Subdomains cannot be registered directly. ' . 'Please enter only the root domain name ' . '(example: example.com).'; } return $errors; });
  12. hi. In whmcs, you can generally search for "sub.domain.com" in 2 places: 1. here (domain only): https://whmcs-demo.com/cart.php?a=add&domain=register 2. and here (domain for a hosting): https://whmcs-demo.com/index.php?rp=/store/hosting/hosting The result given by 1 is correct, by 2 can be misleading
  13. When some one search subdomain.example.com, You want to show some warning like you are trying to do search for a subdomain, instead of showing the main domain is available, right?
  14. Can you check in a browser inspect weather the staffs are really loaded and just hidden ? You can use F12 key to get the inspect tool open in the browser.
  15. I have a recurrent issue with security questions and answers or just randomly stopped working for users and they cannot get past that security step even changing the question and answer doesn't work and they still can't get past that step i then have to go in and disable the security I have reported this issue to support many times but I've never got any help from them they seem to have no idea what the problem is anyone else got any clues?.
  16. I have a recurrent issue with security questions and answers or just randomly stopped working for users and they cannot get past that security step even changing the question and answer doesn't work and they still can't get past that step i then have to go in and disable the security I have reported this issue to support many times but I've never got any help from them they seem to have no idea what the problem is anyone else got any clues?.
  17. Yes, please use this link https://demo.whmcsglobalservices.com/20xdemo/index.php for AI based domain suggestions demo
  18. As attached image shows, after upgrading to 9.0.3, on blend-new admin template there are blank staff-member entries on Staff Dropdown, on header Cache cleared, re-uploaded template files
  19. I created a simple module to display a table of active product info. <?php /** * List Active Products Addon Module * * @see https://developers.whmcs.com/addon-modules/ */ if ( ! defined( 'WHMCS' ) ) { die( 'This file cannot be accessed directly' ); } use WHMCS\Database\Capsule; /** * Define addon module configuration parameters. * * @return array */ function list_active_products_config() { return array( 'name' => 'List Active Products', // Display name for your module 'description' => '.', 'author' => 'Greg Perham', // Module author name 'language' => 'english', // Default language 'version' => '1.0', // Version number 'fields' => array(), ); } /** * Activate. * * This function is optional. * * @return array Optional success/failure message */ function list_active_products_activate() { return array( 'status' => 'success', // Supported values here include: success, error or info 'description' => 'List Active Products addon enabled.', ); } /** * Deactivate. * * This function is optional. * * @return array Optional success/failure message */ function list_active_products_deactivate() { return array( 'status' => 'success', // Supported values here include: success, error or info 'description' => 'List Active Products addon disabled.', ); } /** * Admin Area Output. * * Called when the addon module is accessed via the admin area. * Should print (not return) output. */ function list_active_products_output( $vars ) { global $CONFIG, $customadminpath; $adminurl = $CONFIG['SystemURL'] . '/' . $customadminpath . '/'; // Get common module parameters $modulelink = $vars['modulelink']; // eg. addonmodules.php?m=list_active_products $version = $vars['version']; // eg. 1.0 $_lang = $vars['_lang']; // an array of the currently loaded language variables // Get product info $_products = []; $products = Capsule::table('tblproducts')->select('id', 'name')->get(); foreach ($products as $product) { $_products[$product->id] = $product->name; } $html = ''; $productid = 0; $orders = []; if ( isset( $_GET['productid'] ) && is_numeric( $_GET['productid'] ) ) { $productid = $_GET['productid']; $orders = Capsule::table('tblhosting')->where('packageid', '=', $productid)->where('domainstatus', '=', 'Active')->get(); $heading = "Displaying product ID $productid: {$_products[$product->id]}"; } else { $orders = Capsule::table('tblhosting')->where('domainstatus', '=', 'Active')->orderby('packageid', 'asc')->get(); $heading = "Displaying all products"; } // echo '<pre>'; var_dump( $orders ); echo '</pre>'; die; foreach ($orders as $orderlist) { $productid = $orderlist->packageid; $productname = $_products[$productid]; $userid = $orderlist->userid; $orderid = $orderlist->id; $domain = $orderlist->domain ?: 'None specified.'; $server = $orderlist->server; $paymentmethod = $orderlist->paymentmethod; $billingcycle = $orderlist->billingcycle; $nextduedate = $orderlist->nextduedate; $nextinvoicedate = $orderlist->nextinvoicedate; $amount = $orderlist->amount; $tablerows .= ("<tr> <td><a href='{$modulelink}&productid=$productid'>$productid</a></td> <td>$productname</td> <td><a href='{$adminurl}clientssummary.php?userid=$userid'>$userid</a></td> <td><a href='{$adminurl}clientsservices.php?userid={$userid}&productselect={$orderid}'>$domain</a></td> <td>$server</td> <td>$paymentmethod</td> <td>$billingcycle</td> <td>$nextduedate</td> <td>$nextinvoicedate</td> <td>$amount</td> </tr>"); } ?> <h2><?php echo $heading; ?></h2> <style>#product-list td a {display: block;}</style> <table id="product-list" class="datatable" width="100%" border="0" cellspacing="1" cellpadding="3"> <thead> <tr> <th>Product ID</th> <th>Product Name</th> <th>User ID</th> <th>Domain</th> <th>Server</th> <th>Payment Method</th> <th>Billing Cycle</th> <th>Next Invoice</th> <th>Next Due</th> <th>Amount</th> </tr> </thead> <tbody> <?php echo $tablerows; ?> </tbody> </table> <?php }
  20. Hi, When a client enters a subdomain under "Register a new domain" (for example subdomain.example.com), WHMCS silently normalizes the request and checks only the first label + TLD. Example: subdomain.example.com becomes: subdomain.com The customer may therefore believe they are registering subdomain.example.com, while the system is actually checking/registering subdomain.com. I added a custom notice in my order form to reduce confusion (see screenshot), but it would be useful if WHMCS displayed a validation warning whenever dots are entered in the SLD field.
  21. Please contact us here we can create the custom addon hook module for you https://whmcsglobalservices.com/whmcs-custom-development/
  22. Please contact us here we can develop the custom addon hook module https://whmcsglobalservices.com/whmcs-custom-development/
  1. Load more activity
×
×
  • 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