Search the Community
Showing results for tags 'Debug'.
Found 2 results
-
1. WordPress Manager For WHMCS 1.8.0 We can promise you that whenever you drop by our website to catch up on the development of our WordPress Manager For WHMCS, there will be plenty of new functional powers waiting for you to discover. Today things will be no different as we have just released the attention-worthy 1.8.0 version which scales up this in-demand module even further with the following features: WHMCS V8.5 compatibility has been established. WordPress debug mode can be activated at any time from the instance actions menu. SSL certificate’s expiration date is now included as part of the available details if the instance comes with one. Explore more details about WordPress Manager For WHMCS 1.8.0! 2. Hetzner VPS For WHMCS 1.6.0 Whether you already are a proud owner of our Hetzner VPS For WHMCS or perhaps are still considering its implementation to your business, you are sure to enjoy the news we have to share today. This exact piece of well-built software has just been equipped with a handful of practical tools included in the fresh 1.6.0 update! These are just some of them: WHMCS V8.5 support has been officially confirmed. PTR records can be automatically created upon server creation based on the provided reverse DNS template. Applications can be freely selected when rebuilding a virtual machine with an image. Usage graphs have been extended to include "Memory IO Operation Usage" and "Network Package Traffic" data sets, and are now available in the admin area with a time frame picker. Explore more details about Hetzner VPS For WHMCS 1.6.0! 3. Servertastic SSL For WHMCS 1.4.8 & Servertastic SSL For cPanel 1.4.0 There may be plenty of different ways to gain an edge in the web hosting industry, but none as cost-effective and effortless as the solutions we would like to offer you right now. You are just a few clicks away from incorporating high-ranking SSL certificates into your business marketplace - simply download our Servertastic SSL For WHMCS, or better yet, combine it with Servertastic SSL For cPanel! To make sure both modules are in tip-top shape, they have been just recently armed with a set of new optimizations, including support for WHMCS V8.5 as well as the latest cPanel/WHM version. Go grab this popular update without spending a penny! Explore more details about our Servertastic SSL modules! 4. Have an extra minute to spare? That'd be great, because we have brought out quite a few more updates this week, each equipped with flawless WHMCS V8.5 support: Client Area Designer For WHMCS - v1.1.11 Client Area Popup For WHMCS - v1.3.4 cPanel Extended For WHMCS - v3.13.3 Freshdesk For WHMCS - v1.4.1 Kayako For WHMCS - v1.1.5 Plesk Extended For WHMCS - v3.6.2 Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- Modules Garden
- (and 14 more)
-
Latest WHMCS using stock six template. When I add {debug} to the top of clientareahome.tpl a new popout displays TONS of great things... I just want to recycle some of these smarty objects. For example, I wish to display client balance that someone would see in the notification area.. more or less.. The $LANG smarty objects seem to work, mostly. The other ones that display %s do not. I just don't understand. {$totalbalance} {$LANG.availcreditbaldesc} {availcreditbaldesc} {$availcreditbal} availcreditbaldesc => "You have a credit balance of %s and this will be automatically applied to any..." youhaveoverdueinvoices => "You have %s Overdue Invoice(s) etc..etc.. --- Here is a snippet of some example code, that I snagged from the debug popup window. clientAlerts => Array (5) creditCardExpiring => "Your credit card :creditCardType-:creditCardLastFourDigits expires within :da..." domainsExpiringSoon => "You have :numberOfDomains domain(s) expiring within the next :days days." invoicesUnpaid => "You have :numberOfInvoices unpaid invoice(s). Pay them early for peace of mind." invoicesOverdue => "You have :numberOfInvoices overdue invoice(s) with a total balance due of :ba..." creditBalance => "You have a credit balance of :creditBalance." - - - Updated - - - Do I really need a hook, to display an already existing smarty object that is being loaded? Just seems redundant and inefficient. If the data is already being display...I should just be able to recycle the same {fancy.tag}. - - - Updated - - - I did a global search for the one tag, and found something helpful in five template. {if $clientsstats.incredit} <div class="alert alert-success"> <p><strong>{$LANG.availcreditbal}:</strong> {$LANG.availcreditbaldesc|sprintf2:$clientsstats.creditbalance}</p> </div> {/if} I mean, it delivers results.. that's always good! A step into the right direction. So basically, I'm using {$clientsstats.creditbalance} to get the results I desire. --- OOOOO I think it just hit me... the period symbol extends the smarty object! That's actually brilliant...